Beispiel #1
0
        public void GetHashCodeNotOverwrittenIfSupplied()
        {
            var thing = new IveGotMethods();

            Assert.Equal(42, thing.GetHashCode());
        }
Beispiel #2
0
        public void GetEqualsNotOverriddenIfSupplied()
        {
            var thing = new IveGotMethods();

            Assert.True(thing.Equals(null));
        }