public void Equals_ComparedToNull_AreNotEqual()
        {
            var firstRegistration = new ServiceRegistration();
            firstRegistration.ServiceType = typeof(int);
            firstRegistration.ServiceName = string.Empty;

            Assert.IsFalse(firstRegistration.Equals(null));
        }
        public void Equals_ComparedToNull_AreNotEqual()
        {
            var firstRegistration = new ServiceRegistration();

            firstRegistration.ServiceType = typeof(int);
            firstRegistration.ServiceName = string.Empty;


            Assert.False(firstRegistration.Equals(null));
        }