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