Example #1
0
        public void TransientRegister_Success()
        {
            ITestCase testCase = new TestCaseC();

            var c = new UnityContainer();
            c = (UnityContainer)testCase.TransientRegister(c);

            var obj1 = c.Resolve<ITestC>();
            var obj2 = c.Resolve<ITestC>();

            Assert.AreNotEqual(obj1, obj2);
            Helper.Check(obj1, false);
            Helper.Check(obj2, false);
        }
Example #2
0
        public void SingletonRegister_Success()
        {
            ITestCase testCase = new TestCaseC();

            var c = new UnityContainer();
            c = (UnityContainer)testCase.SingletonRegister(c);

            var obj1 = c.Resolve<ITestC>();
            var obj2 = c.Resolve<ITestC>();

            Assert.AreEqual(obj1, obj2);
            Helper.Check(obj1, true);
            Helper.Check(obj2, true);
        }