Example #1
0
        public void GetHashCode_IsEqual_ForIncidentsWithSameIDButDifferentValues()
        {
            Incident incident2 = new Incident(clock, incidentChangeListener, "ID 1", 13, "Location2", new DateTime(2010, 2, 1, 9, 30, 0), "MyName", "AnotherType",
                                    "AnotherStatus", "Large", 7);

            Assert.AreEqual(incident.GetHashCode(), incident2.GetHashCode());
        }
Example #2
0
        public void GetHashCode_IsEqual_ForIncidentsWithSameID()
        {
            Incident incident2 = new Incident(clock, incidentChangeListener, "ID 1", 13, "Location", new DateTime(2009, 2, 1, 9, 30, 0), "Name", "Type",
                                    "Status", "Size", 150);

            Assert.AreEqual(incident.GetHashCode(), incident2.GetHashCode());
        }