Exemplo n.º 1
0
        internal void StartTestSuite(NUnit.Core.TestName testName)
        {
            level = 0;

            if (level++ == 0)
            {
                list_testerrors = new List <string>();
            }
        }
Exemplo n.º 2
0
 internal void StartTest(NUnit.Core.TestName testName)
 {
     TestName = testName.Name;
 }
 //you must also provide all the event handlers,
 //but they don't have to actually do anything if they are not used.
 //e.g.
 public void TestStarted(NUnit.Core.TestName testName)
 {
     //This saved the start time of the test
     _start = DateTime.Now;
 }