Exemplo n.º 1
0
 public InstanceExecution(ExecutionPlan executionPlan, Type testClass, object instance, IReadOnlyList<CaseExecution> caseExecutions)
 {
     ExecutionPlan = executionPlan;
     TestClass = testClass;
     Instance = instance;
     CaseExecutions = caseExecutions;
 }
Exemplo n.º 2
0
 public ClassExecution(ExecutionPlan executionPlan, Type testClass, CaseExecution[] caseExecutions)
 {
     ExecutionPlan = executionPlan;
     TestClass = testClass;
     CaseExecutions = caseExecutions;
 }