예제 #1
0
 public AssemblyDispatcher(UnitTestHarness testHarness, IUnitTestProvider provider, 
     IAssembly testAssembly) : base(testHarness, provider)
 {
     _assembly = testAssembly;
     _testClasses = new TestWorkItemDispatcher();
     _classInstances = new TestClassInstanceCollection();
 }
예제 #2
0
 public AssemblyDispatcher(UnitTestHarness testHarness, IUnitTestProvider provider,
                           IAssembly testAssembly) : base(testHarness, provider)
 {
     _assembly       = testAssembly;
     _testClasses    = new TestWorkItemDispatcher();
     _classInstances = new TestClassInstanceCollection();
 }
예제 #3
0
 public TestClassDispatcher(
     UnitTestHarness testHarness, ITestClass testClass, 
     object instance, IUnitTestProvider provider) 
     : base(testHarness, provider)
 {
     _testClass = testClass;
     _testExecutionQueue = new TestWorkItemDispatcher();
     _instance = instance;
 }
예제 #4
0
 public TestClassDispatcher(
     UnitTestHarness testHarness, ITestClass testClass,
     object instance, IUnitTestProvider provider)
     : base(testHarness, provider)
 {
     _testClass          = testClass;
     _testExecutionQueue = new TestWorkItemDispatcher();
     _instance           = instance;
 }