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) { }
public NUnitTestEventTestCase(INUnitTestEventForXml node) : this(node.Node) { }
public NUnitTestEventStartTest(INUnitTestEventForXml node) : this(node.Node) { }