Пример #1
0
 protected XunitTestSuiteInstrumentation(IntPtr handle, JniHandleOwnership transfer, IResultPath resultPath, IResultChannel resultChannel, IInstrumentationProgress progress)
     : base(handle, transfer)
 {
     _resultsPath           = resultPath;
     _originalResultChannel = resultChannel;
     _progress               = progress;
     _cachedResultChannel    = new CachedResultChannel();
     _instrumentDeviceRunner = new InstrumentationDeviceRunner(new List <Assembly>(), null, _cachedResultChannel);
 }
Пример #2
0
 protected void AddTestAssembly(Assembly assembly)
 {
     _instrumentDeviceRunner = _instrumentDeviceRunner.AddTestAssembly(assembly);
 }