Example #1
0
 public DiffResult Compare()
 {
     if (_diffResult == null)
     {
         _diffResult = new DiffResult();
         if (!_controlReader.Equals(_testReader))
         {
             Compare(_diffResult);
         }
     }
     return(_diffResult);
 }
Example #2
0
 public DiffResult Compare()
 {
     if (_diffResult == null)
     {
         _diffResult = new DiffResult();
         if (!_controlReader.Equals(_testReader))
         {
             try
             {
                 Compare(_diffResult);
             }
             catch (Exception e)
             {
                 throw e;                        //just need a place to put a breakpoint
             }
         }
     }
     return(_diffResult);
 }
Example #3
0
 public override bool Equals(object obj)
 {
     return(reader.Equals(obj));
 }