public void BuildUpClassWithDependencyProperty_Fail() { var c = new Container(); c.RegisterType<EmptyClass>().AsSingleton(); var sampleClass = new SampleClassWithClassDependencyProperty(); Exception exception = null; var thread = new Thread(() => { try { c.BuildUp(sampleClass, ResolveKind.FullEmitFunction); } catch (Exception ex) { exception = ex; } }); thread.Start(); thread.Join(); if (exception != null) { throw exception; } Assert.IsNotNull(sampleClass.EmptyClass); }
public void ClassWithoutBuildUpWithDependencyProperty_Success() { var c = new Container(); c.RegisterType<EmptyClass>().AsSingleton(); var sampleClass = new SampleClassWithClassDependencyProperty(); Assert.IsNotNull(sampleClass); Assert.IsNull(sampleClass.EmptyClass); }
public void BuildUpClassWithDependencyPropertyWithoutRegisteredNestedClass_Success() { var c = new Container(); var sampleClass = new SampleClassWithClassDependencyProperty(); c.BuildUp(sampleClass, ResolveKind.PartialEmitFunction); Assert.IsNotNull(sampleClass.EmptyClass); }
public void BuildUpClassWithDependencyProperty_Fail() { var c = new Container(); c.RegisterType<EmptyClass>().AsSingleton(); var sampleClass = new SampleClassWithClassDependencyProperty(); c.BuildUp(sampleClass, ResolveKind.FullEmitFunction); Assert.IsNotNull(sampleClass.EmptyClass); }
public void BuildUpClassWithDependencyProperty_Success() { var c = new Container(); c.RegisterType<EmptyClass>().AsPerThread(); var sampleClass = new SampleClassWithClassDependencyProperty(); var thread = new Thread(() => { c.BuildUp(sampleClass, ResolveKind.PartialEmitFunction); }); thread.Start(); thread.Join(); Assert.IsNotNull(sampleClass.EmptyClass); }
public void DifferentObjects_BuildUpClassWithDependencyProperty_Success() { var c = new Container(); c.RegisterType<EmptyClass>().AsSingleton(); var sampleClass1 = new SampleClassWithClassDependencyProperty(); var sampleClass2 = new SampleClassWithClassDependencyProperty(); c.BuildUp(sampleClass1, ResolveKind.PartialEmitFunction); c.BuildUp(sampleClass2, ResolveKind.PartialEmitFunction); Assert.IsNotNull(sampleClass1.EmptyClass); Assert.IsNotNull(sampleClass2.EmptyClass); Assert.AreNotEqual(sampleClass1, sampleClass2); Assert.AreEqual(sampleClass1.EmptyClass, sampleClass2.EmptyClass); }
public void DifferentThreads_DifferentObjects_BuildUpClassWithDependencyProperty_Success() { var c = new Container(); c.RegisterType<EmptyClass>().AsPerThread(); var sampleClass1 = new SampleClassWithClassDependencyProperty(); var sampleClass2 = new SampleClassWithClassDependencyProperty(); var thread1 = new Thread(() => { c.BuildUp(sampleClass1, ResolveKind.PartialEmitFunction); }); thread1.Start(); thread1.Join(); var thread2 = new Thread(() => { c.BuildUp(sampleClass2, ResolveKind.PartialEmitFunction); }); thread2.Start(); thread2.Join(); Assert.IsNotNull(sampleClass1.EmptyClass); Assert.IsNotNull(sampleClass2.EmptyClass); Assert.AreNotEqual(sampleClass1, sampleClass2); Assert.AreNotEqual(sampleClass1.EmptyClass, sampleClass2.EmptyClass); }
public SampleClassWithClassInConstructorWithNestedClassDependencyProperty(SampleClassWithClassDependencyProperty sampleClassWithClassDependencyProperty) { SampleClassWithClassDependencyProperty = sampleClassWithClassDependencyProperty; }