Quick question, how do I create a method that is run only once before all tests in the solution are run.
Sorry for the crappy formatting...
///
/// Use TestInitialize to run code before running each test
/// Runs before every test executes
///
[TestInitialize()]
public void TestInitialize()
{
...
...
}
///
/// Use TestCleanup to run code after each test has run
/// Runs after every test executes
///
[TestCleanup()]
public void TestCleanup()
{
...
...
}