예제 #1
0
 public TestContainerManager(CTestAdapterPackage package, ILog log)
 {
     this._package = package;
     this._log     = log;
     this._testContainerWatcher = new TestContainerWatcher();
     this._testContainers       = new List <string>();
     // connect listeners with local events
     this._testContainerWatcher.TestContainerDeleted += this.OnTestContainerRemoved;
     this._testContainerWatcher.TestContainerChanged += this.OnTestContainerChanged;
 }
예제 #2
0
 public CTestAdapterOptionPage()
 {
     this._package = CTestAdapterPackage.Instance;
     this.UpdateLogFileName();
 }