1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00
Sonarr/NzbDrone.Web.UI.Test/Fluent/AssertionExtention.cs
2011-12-18 21:10:58 -08:00

13 lines
304 B
C#

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);
}
}
}