Ejemplo n.º 1
0
 internal TestCaseResult(TestCaseInfo testCase, TestStatus status = TestStatus.NotRun)
 {
     _status   = status;
     Reason    = testCase.Reason;
     _testName = testCase.TestName;
     _type     = testCase.Type;
 }
Ejemplo n.º 2
0
 internal TestUnitResults(TestUnit node)
 {
     _displayName = node.DisplayName;
     _type        = node.Type;
     _children    = new TestUnitResultCollection(this);
 }