Example #1
0
 /// <summary>
 /// Constructor
 /// </summary>
 internal QAMockHost(GetComponentDelegate getComponentCallback)
 {
     this.buildParameters          = new BuildParameters();
     this.getComponentCallback     = getComponentCallback;
     this.engineStatusChangedEvent = new AutoResetEvent(false);
     this.lastEngineStatus         = BuildRequestEngineStatus.Shutdown;
     this.loggingService           = this;
     this.requestEngine            = null;
     this.testDataProvider         = null;
     this.buildComponents          = new Queue <IBuildComponent>();
     this.legacyThreadingData      = new LegacyThreadingData();
 }
Example #2
0
 /// <summary>
 /// Constructor 
 /// </summary>
 internal QAMockHost(GetComponentDelegate getComponentCallback)
 {
     this.buildParameters = new BuildParameters();
     this.getComponentCallback = getComponentCallback;
     this.engineStatusChangedEvent = new AutoResetEvent(false);
     this.lastEngineStatus = BuildRequestEngineStatus.Shutdown;
     this.loggingService = this;
     this.requestEngine = null;
     this.testDataProvider = null;
     this.buildComponents = new Queue<IBuildComponent>();
     this.legacyThreadingData = new LegacyThreadingData();
 }