예제 #1
0
 public void SetPreviousTestBatch(XmlTestBatch testBatch)
 {
     if (testBatch == null)
     {
         throw new ArgumentNullException("testBatch");
     }
     this.testBatchSearcher = new XmlTestBatchSearcher(testBatch);
 }
예제 #2
0
 public FailureFilter(XmlTestBatch testBatch)
 {
     if (testBatch == null)
     {
         throw new ArgumentNullException("testBatch");
     }
     this.searcher = new XmlTestBatchSearcher(testBatch);
 }