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