Esempio n. 1
0
 public void GetEqualsNotOverriddenIfSupplied() {
     var thing = new IveGotMethods();
     Assert.True(thing.Equals(null));
 }
Esempio n. 2
0
 public void GetHashCodeNotOverwrittenIfSupplied() {
     var thing = new IveGotMethods();
     Assert.Equal(42, thing.GetHashCode());
 }