1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-29 03:05:49 +00:00
Sonarr/NzbDrone.Web.UI.Test/Fluent/AssertionExtention.cs

13 lines
304 B
C#
Raw Normal View History

2011-12-19 05:08:36 +00:00
using System.Linq;
using OpenQA.Selenium.Remote;
namespace NzbDrone.Web.UI.Automation.Fluent
{
public static class AssertionExtention
{
public static DriverAssertion Should(this RemoteWebDriver actualValue)
{
return new DriverAssertion(actualValue);
}
}
}