mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-31 20:15:55 +00:00
13 lines
304 B
C#
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);
|
||
|
}
|
||
|
}
|
||
|
}
|