Ejemplo n.º 1
0
        public void GetHashCode_DifferentServiceObjects_ShouldReturnSameHashCode()
        {
            var service = new Service("service");
            var other = new Service("service1");

            Assert.That(service.GetHashCode(), Is.Not.EqualTo(other.GetHashCode()));
        }