public void when_one_transient_configuration_with_singleton_dependency_candidate_registered_then_resolves_type_correctly()
 {
     _sut.RegisterAsSingleton <Interfaze, Clazz>();
     _sut.Register <Interfaze1, Clazz1>();
     Assert.That(_sut.Get <Interfaze1>(), Is.InstanceOf(typeof(Clazz1)));
 }