Beispiel #1
0
        internal TestRun(TestExecutionRequest request, IFixtureContainerSource fetchContainer, ITestObserver listener,
            FixtureLibrary library, SystemLifecycle lifecycle)
        {
            _request = request;
            _fetchContainer = fetchContainer;
            _listener = listener;
            _library = library;
            _lifecycle = lifecycle;

            _result = new TestResult();
        }
Beispiel #2
0
        internal TestRun(TestExecutionRequest request, IFixtureContainerSource fetchContainer, ITestObserver listener,
                         FixtureLibrary library, SystemLifecycle lifecycle)
        {
            _request        = request;
            _fetchContainer = fetchContainer;
            _listener       = listener;
            _library        = library;
            _lifecycle      = lifecycle;

            _result = new TestResult();
        }
Beispiel #3
0
 public TestRunner(SystemLifecycle lifecycle, FixtureLibrary library, IFixtureContainerSource source)
 {
     _lifecycle = lifecycle;
     _library = library;
     _source = source;
 }
Beispiel #4
0
 public TestRunner(ISystem system, FixtureLibrary library, IFixtureContainerSource source)
     : this(new SystemLifecycle(system), library, source)
 {
 }
Beispiel #5
0
 public TestRunner(SystemLifecycle lifecycle, FixtureLibrary library, IFixtureContainerSource source)
 {
     _lifecycle = lifecycle;
     _library   = library;
     _source    = source;
 }
Beispiel #6
0
 public TestRunner(ISystem system, FixtureLibrary library, IFixtureContainerSource source)
     : this(new SystemLifecycle(system), library, source)
 {
 }