public void RunTests(RunTests command, ITestResultReceiver reporter)
        {
            _assemblyLoaderProxy.AddDirectory(command.AssemblyPath);
            var ourProxy = new TestResultReporter(reporter);

            _runnerProxy.RunTest(command, ourProxy);
        }
Exemple #2
0
 public TestResultReporter(ITestResultReceiver receiver)
 {
     _receiver = receiver;
 }