Esempio n. 1
0
 public NUnitTestEventTestOutput(INUnitTestEvent theEvent) : this(theEvent.Node)
 {
     if (theEvent.Node.Name != "test-output")
     {
         throw new NUnitEventWrongTypeException($"Expected 'test-output', got {theEvent.Node.Name}");
     }
 }
Esempio n. 2
0
 public NUnitTestEventTestCase(INUnitTestEvent node) : this(node.Node)
 {
 }
Esempio n. 3
0
 public NUnitTestEventSuiteFinished(INUnitTestEvent node) : this(node.Node)
 {
 }
Esempio n. 4
0
 public NUnitTestEventStartTest(INUnitTestEvent node) : this(node.Node)
 {
 }