public void ShouldIncludeAllProperties() { // Given var registration = new TypeRegistration(typeof(IService), typeof(ServiceOne), RegistrationLifetime.Singleton); // When var actual = registration.ToString(); // Then Assert.Equal("Singleton - IService - ServiceOne", actual); }