public TreeTestDomainCollection(IUnitTreeNodeFactory factory)
 {
     if (factory==null)
         throw new ArgumentNullException("factory");
     this.factory=factory;
     this.watcher.Start();
 }
예제 #2
0
 public TreeTestDomain(string testFilePath, IUnitTreeNodeFactory factory)
     : base(testFilePath)
 {
     if (factory==null)
         throw new ArgumentNullException("factory");
     this.factory=factory;
 }
예제 #3
0
 public TreeTestDomain(string testFilePath, IUnitTreeNodeFactory factory)
     : base(testFilePath)
 {
     if (factory == null)
     {
         throw new ArgumentNullException("factory");
     }
     this.factory = factory;
 }
예제 #4
0
 public TreeTestDomainCollection(IUnitTreeNodeFactory factory)
 {
     if (factory == null)
     {
         throw new ArgumentNullException("factory");
     }
     this.factory = factory;
     this.watcher.Start();
 }
예제 #5
0
 public override void Dispose()
 {
     base.Dispose();
     this.factory = null;
 }
예제 #6
0
 public override void Dispose()
 {
     base.Dispose();
     this.factory = null;
 }