public DummyLoggerEvents(TestSessionMessageLogger testSessionMessageLogger) : base(testSessionMessageLogger) { }
/// <summary> /// Initializes a new instance of the <see cref="ExecutionManager"/> class. /// </summary> public ExecutionManager(IRequestData requestData) : this(TestPlatformEventSource.Instance, requestData) { this.sessionMessageLogger = TestSessionMessageLogger.Instance; this.sessionMessageLogger.TestRunMessage += this.TestSessionMessageHandler; }
/// <summary> /// Default constructor. /// </summary> protected TestRuntimeProviderManager(TestSessionMessageLogger sessionLogger) { this.messageLogger = sessionLogger; this.testHostExtensionManager = TestRuntimeExtensionManager.Create(sessionLogger); }
public void Initialize() { testSessionMessageLogger = TestSessionMessageLogger.Instance; loggerEvents = new InternalTestLoggerEvents(testSessionMessageLogger); }
public void TestInit() { this.testSessionMessageLogger = TestSessionMessageLogger.Instance; }
/// <summary> /// Initializes a new instance of the <see cref="DiscoveryManager"/> class. /// </summary> /// <param name="testPlatformEventSource"> /// The test platform event source. /// </param> protected DiscoveryManager(ITestPlatformEventSource testPlatformEventSource) { this.sessionMessageLogger = TestSessionMessageLogger.Instance; this.sessionMessageLogger.TestRunMessage += this.TestSessionMessageHandler; this.testPlatformEventSource = testPlatformEventSource; }