Ejemplo n.º 1
0
 public MyFileFilter(BlockReportTestBase _enclosing, string nameToAccept, bool all
                     )
 {
     this._enclosing = _enclosing;
     if (nameToAccept == null)
     {
         throw new ArgumentException("Argument isn't suppose to be null");
     }
     this.nameToAccept = nameToAccept;
     this.all          = all;
 }
Ejemplo n.º 2
0
 public BlockChecker(BlockReportTestBase _enclosing, Path filePath)
 {
     this._enclosing = _enclosing;
     this.filePath   = filePath;
 }