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