Created
August 29, 2011 15:57
-
-
Save MACSkeptic/1178704 to your computer and use it in GitHub Desktop.
useless stuff
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private TestContext testContextInstance; | |
/// <summary> | |
///Gets or sets the test context which provides | |
///information about and functionality for the current test run. | |
///</summary> | |
public TestContext TestContext | |
{ | |
get | |
{ | |
return testContextInstance; | |
} | |
set | |
{ | |
testContextInstance = value; | |
} | |
} | |
#region Additional test attributes | |
// | |
//You can use the following additional attributes as you write your tests: | |
// | |
//Use ClassInitialize to run code before running the first test in the class | |
//[ClassInitialize] | |
//public static void MyClassInitialize(TestContext testContext) | |
//{ | |
//} | |
// | |
//Use ClassCleanup to run code after all tests in a class have run | |
//[ClassCleanup] | |
//public static void MyClassCleanup() | |
//{ | |
//} | |
// | |
//Use TestInitialize to run code before running each test | |
//[TestInitialize] | |
//public void MyTestInitialize() | |
//{ | |
//} | |
// | |
//Use TestCleanup to run code after each test has run | |
//[TestCleanup] | |
//public void MyTestCleanup() | |
//{ | |
//} | |
// | |
#endregion |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment