Skip to content

Commit

Permalink
Use only passing tests in all-executors.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dimp-gh committed Aug 3, 2017
1 parent 284cd8d commit b07247d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Binary file modified examples/selenium/nunit/AssemblyDemo/SeleniumSuite.dll
Binary file not shown.
6 changes: 3 additions & 3 deletions examples/selenium/nunit/SeleniumSuite/SeleniumSuite/Test.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ public void Initialize()
}

[Test()]
public void PassingTest()
public void IndexPage()
{
driver.Navigate().GoToUrl("http://blazedemo.com");
Assert.AreEqual(driver.Title, "BlazeDemo");
}

[Test()]
public void FailingTest()
public void ReservePage()
{
driver.Navigate().GoToUrl("http://blazedemo.com/reserve.php");
Assert.AreEqual(driver.Title, "BlazeDemo");
Assert.AreEqual(driver.Title, "BlazeDemo - reserve");
}

[TearDown]
Expand Down

0 comments on commit b07247d

Please sign in to comment.