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