Ejemplo n.º 1
0
        public void not_be_equal_when_different_to_another_time_using_hash_code_comparison()
        {
            var time1 = new TwentyFourHourTime(10, 45);
            var time2 = new TwentyFourHourTime(11, 45);

            Assert.True(time1.GetHashCode() != time2.GetHashCode());
        }
Ejemplo n.º 2
0
        public void be_equal_when_the_same_as_another_time_using_hash_code_comparison()
        {
            var time1 = new TwentyFourHourTime(10, 45);
            var time2 = new TwentyFourHourTime(10, 45);

            Assert.True(time1.GetHashCode() == time2.GetHashCode());
        }