1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00
Sonarr/NzbDrone.Web.UI.Test/BasicPageFixture.cs

43 lines
927 B
C#
Raw Normal View History

2011-12-19 08:08:36 +03:00
using System.Linq;
using NUnit.Framework;
using NzbDrone.Web.UI.Automation.Fluent;
namespace NzbDrone.Web.UI.Automation
{
public class BasicPageFixture : AutomationTestBase
{
[Test]
public void HomePage()
{
2011-12-19 08:38:52 +03:00
Driver.GivenHomePage();
2011-12-19 08:08:36 +03:00
CaptureScreen();
2011-12-19 08:38:52 +03:00
Driver.Should().BeNzbDronePage();
2011-12-19 08:08:36 +03:00
}
[Test]
public void HistoryPage()
{
2011-12-19 08:38:52 +03:00
Driver.GivenHistoryPage();
2011-12-19 08:08:36 +03:00
CaptureScreen();
2011-12-19 08:38:52 +03:00
Driver.Should().BeNzbDronePage();
2011-12-19 08:08:36 +03:00
}
[Test]
public void MissingPage()
{
2011-12-19 08:38:52 +03:00
Driver.GivenMissingPage();
2011-12-19 08:08:36 +03:00
CaptureScreen();
2011-12-19 08:38:52 +03:00
Driver.Should().BeNzbDronePage();
2011-12-19 08:08:36 +03:00
}
[Test]
public void SettingsPage()
{
2011-12-19 08:38:52 +03:00
Driver.GivenSettingsPage();
2011-12-19 08:08:36 +03:00
CaptureScreen();
2011-12-19 08:38:52 +03:00
Driver.Should().BeNzbDronePage();
2011-12-19 08:08:36 +03:00
}
}
}