示例#1
0
 public TestConductor(ITestIterationResult iteration, ITestCase testCase, TestData iterationData)
 {
     _testCase      = testCase;
     _iteration     = iteration;
     _iterationData = iterationData;
     _actionCounter = 0;
     TestOutCome    = TestOutcome.Passed;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="TfsTestIterationResult"/> class.
 /// </summary>
 /// <param name="testIterationResult">The wrapped test iteration result.</param>
 /// <param name="testCase">The test case used to query the ordering of the test results.</param>
 public TfsTestIterationResult(ITestIterationResult testIterationResult, ITestCase testCase)
 {
     _testIterationResult = testIterationResult;
     _testCase            = testCase;
 }