Example #1
0
        public void EqualsReturnsFalseOnNull()
        {
            SpecificArea squarefootperton = SpecificArea.FromSquareFootPerTons(1);

            Assert.False(squarefootperton.Equals(null));
        }
Example #2
0
        public void EqualsReturnsFalseOnTypeMismatch()
        {
            SpecificArea squarefootperton = SpecificArea.FromSquareFootPerTons(1);

            Assert.False(squarefootperton.Equals(new object()));
        }