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