예제 #1
0
        public void RegisterInstance_Valid()
        {
            var helper   = new WindsorHelper();
            var instance = new TestClass1()
            {
                Name = "test"
            };

            var container = new WindsorContainer();

            Assert.IsNull(helper.GetRegistrationInfo(container, typeof(ITestInterface)));

            helper.RegisterInstance(container, typeof(ITestInterface), instance);
            Assert.IsTrue(container.Resolve <ITestInterface>() != null);
            Assert.AreEqual(instance, container.Resolve <ITestInterface>());
        }
예제 #2
0
        public void RegisterInstance_InvalidContainer()
        {
            var helper = new WindsorHelper();

            var container = new object();

            ExceptionTester.CallMethodAndExpectException <NotSupportedException>(() => helper.RegisterInstance(container, typeof(ITestInterface), new TestClass1()));
        }
예제 #3
0
        public void RegisterInstance_InterfaceTypeNull()
        {
            var helper = new WindsorHelper();

            var container = new WindsorContainer();

            ExceptionTester.CallMethodAndExpectException <ArgumentNullException>(() => helper.RegisterInstance(container, null, new TestClass1()));
        }
예제 #4
0
        public void RegisterInstance_InstanceNull()
        {
            var helper = new WindsorHelper();

            var container = new WindsorContainer();

            ExceptionTester.CallMethodAndExpectException <ArgumentNullException>(() => helper.RegisterInstance(container, typeof(ITestInterface), null));
        }
예제 #5
0
        public void RegisterInstance_ContainerNull()
        {
            var helper = new WindsorHelper();

            ExceptionTester.CallMethodAndExpectException <ArgumentNullException>(() => helper.RegisterInstance(null, typeof(ITestInterface), new TestClass1()));
        }