public void ShouldIncludeAllProperties()
            {
                // Given
                var registration = new InstanceRegistration(typeof(IService), new ServiceOne());

                // When
                var actual = registration.ToString();

                // Then
                Assert.Equal("Singleton - IService - Ministro.Test.ServiceOne", actual);
            }