Catel.Test.IoC.TypeFactoryFacts.TheCreateInstanceWithAutoCompletionMethod.CreatesTypeWithPropertyInjection C# (CSharp) Méthode

CreatesTypeWithPropertyInjection() private méthode

private CreatesTypeWithPropertyInjection ( ) : void
Résultat void
            public void CreatesTypeWithPropertyInjection()
            {
                var typeFactory = TypeFactory.Default;

                var instance = typeFactory.CreateInstance<ClassWithPropertyInjection>();

                Assert.IsNotNull(instance.UiVisualizerService);
            }
        }