public SpecializedEqualityTesterTests()
 {
     this.comparand   = new FakeComparand();
     this.comparator1 = new FakeComparand();
     this.comparator2 = new FakeComparand();
     this.subject     = new SpecializedEqualityTester <FakeComparand>(
         this.comparand,
         s => this.comparator1,
         s => this.comparator2);
 }
Ejemplo n.º 2
0
 public StandardEqualityTesterTests()
 {
     this.comparand   = new FakeComparand();
     this.comparator1 = new object();
     this.subject     = new StandardEqualityTester <FakeComparand>(this.comparand, s => this.comparator1, s => null);
 }