Quick question, how do I create a method that is run only once before all tests in the solution are run.
+4
A:
Create a public static method, decorated with the AssemblyInitialize attribute. The test framework will call this method once per test run:
[AssemblyInitialize()]
public static void MyTestInitialize(TestContext testContext)
{}
driis
2009-10-15 12:45:55
thanks for that
mglmnc
2009-10-18 12:20:07