public FailureFilter(XmlTestBatch testBatch)
 {
     if (testBatch == null)
         throw new ArgumentNullException("testBatch");
     this.searcher = new XmlTestBatchSearcher(testBatch);
 }
 public void SetPreviousTestBatch(XmlTestBatch testBatch)
 {
     if (testBatch == null)
         throw new ArgumentNullException("testBatch");
     this.testBatchSearcher = new XmlTestBatchSearcher(testBatch);
 }