Catel.Test.IoC.TypeFactoryFacts.TheCreateInstanceWithAutoCompletionMethod.CreatesTypeWithPropertyInjection C# (CSharp) Method

CreatesTypeWithPropertyInjection() private method

private CreatesTypeWithPropertyInjection ( ) : void
return void
            public void CreatesTypeWithPropertyInjection()
            {
                var typeFactory = TypeFactory.Default;

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

                Assert.IsNotNull(instance.UiVisualizerService);
            }
        }