Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@testautomationtribe
Created July 12, 2016 22:53
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/294567e24d1d2f0a96ab0ecbfd989fa0 to your computer and use it in GitHub Desktop.
Save testautomationtribe/294567e24d1d2f0a96ab0ecbfd989fa0 to your computer and use it in GitHub Desktop.
using NUnit.Framework;
using TatAutomationFramework.Web;
namespace TatAutomationFramework.Tests
{
[SetUpFixture]
public class TestSetup
{
/// <summary>
/// Run Method Only Once before tests
/// </summary>
[OneTimeSetUp]
public void Start()
{
TestBase.BeginExecution();
}
/// <summary>
/// Run Method Only Once After tests
/// </summary>
[OneTimeTearDown]
public void End()
{
TestBase.ExitExecution();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment