Skip to content

Instantly share code, notes, and snippets.

@testautomationtribe
Created July 12, 2016 20:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save testautomationtribe/2e8605663db71d764b4514af725fcc82 to your computer and use it in GitHub Desktop.
Save testautomationtribe/2e8605663db71d764b4514af725fcc82 to your computer and use it in GitHub Desktop.
HeaderFunctionTests Refactored
using NUnit.Framework;
using TatAutomationFramework.Web;
using TatAutomationFramework.Web.Pages;
namespace TatAutomationFramework.Tests
{
public class HeaderFunctionTests : TestBase
{
[Test]
public void Should_DisplayLogo_WhenUserNavigatesToSiteThree()
{
Assert.That(TatPages.HeaderPage.IsLogoDisplayed(), "Logo is not Displayed");
}
[Test]
public void Should_DisplayCorrectTagline_WhenUserNavigatesToSiteThree()
{
Assert.That(TatPages.HeaderPage.IsTaglineCorrect().Equals("Your Local WordPress Installation"), "TagLine is incorrect");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment