Пример #1
0
        public void IsValidContainer_InvalidContainer()
        {
            var helper = new NinjectHelper();

            var container = new object();
            Assert.IsFalse(helper.IsValidContainer(container));
        }
Пример #2
0
        public void GetRegistrationInfo_InterfaceTypeNull()
        {
            var helper = new NinjectHelper();

            var container = new StandardKernel();
            ExceptionTester.CallMethodAndExpectException<ArgumentNullException>(() => helper.GetRegistrationInfo(container, null));
        }
Пример #3
0
        public void GetRegistrationInfo_ContainerWithoutTypeRegistered()
        {
            var helper = new NinjectHelper();

            var container = new StandardKernel();
            Assert.IsNull(helper.GetRegistrationInfo(container, typeof(ITestInterface)));
        }
Пример #4
0
        public void IsValidContainer_ValidContainer()
        {
            var helper = new NinjectHelper();

            var container = new StandardKernel();
            Assert.IsTrue(helper.IsValidContainer(container));
        }
Пример #5
0
        public void GetRegistrationInfo_InvalidContainer()
        {
            var helper = new NinjectHelper();

            var container = new object();
            ExceptionTester.CallMethodAndExpectException<NotSupportedException>(() => helper.GetRegistrationInfo(container, typeof(ITestInterface)));
        }
Пример #6
0
        public void ResolveType_Transient()
        {
            var helper = new NinjectHelper();

            var container = new StandardKernel();
            container.Bind(typeof(ITestInterface)).To<TestClass1>().InTransientScope();

            var resolvedInstance1 = helper.ResolveType(container, typeof(ITestInterface));

            Assert.IsNotNull(resolvedInstance1);
            Assert.IsInstanceOfType(resolvedInstance1, typeof(TestClass1));

            var resolvedInstance2 = helper.ResolveType(container, typeof(ITestInterface));

            Assert.IsNotNull(resolvedInstance2);
            Assert.IsInstanceOfType(resolvedInstance2, typeof(TestClass1));

            Assert.IsFalse(ReferenceEquals(resolvedInstance1, resolvedInstance2));
        }
Пример #7
0
        public void IsValidContainer_Null()
        {
            var helper = new NinjectHelper();

            ExceptionTester.CallMethodAndExpectException<ArgumentNullException>(() => helper.IsValidContainer(null));
        }
Пример #8
0
        public void ResolveType_ContainerWithTypeRegistered()
        {
            var helper = new NinjectHelper();

            var container = new StandardKernel();
            container.Bind(typeof(ITestInterface)).To<TestClass1>();
            var resolvedInstance = helper.ResolveType(container, typeof(ITestInterface));
            Assert.IsNotNull(resolvedInstance);
            Assert.IsInstanceOfType(resolvedInstance, typeof(TestClass1));
        }
Пример #9
0
        public void RegisterType_ImplementingTypeNull()
        {
            var helper = new NinjectHelper();

            var container = new StandardKernel();
            ExceptionTester.CallMethodAndExpectException<ArgumentNullException>(() => helper.RegisterType(container, typeof(ITestInterface), null, RegistrationType.Singleton));
        }
Пример #10
0
        public void ResolveType_ContainerNull()
        {
            var helper = new NinjectHelper();

            ExceptionTester.CallMethodAndExpectException<ArgumentNullException>(() => helper.ResolveType(null, typeof(ITestInterface)));
        }
Пример #11
0
        public void RegisterInstance_Valid()
        {
            var helper = new NinjectHelper();
            var instance = new TestClass1() { Name = "test" };

            var container = new StandardKernel();
            Assert.IsFalse(GetRegistrationInfo(container, typeof(ITestInterface)));

            helper.RegisterInstance(container, typeof(ITestInterface), instance);
            Assert.IsTrue(GetRegistrationInfo(container, typeof(ITestInterface)));
            Assert.AreEqual(instance, container.Get<ITestInterface>());
        }
Пример #12
0
        public void RegisterInstance_InvalidContainer()
        {
            var helper = new NinjectHelper();

            var container = new object();
            ExceptionTester.CallMethodAndExpectException<NotSupportedException>(() => helper.RegisterInstance(container, typeof(ITestInterface), new TestClass1()));
        }
Пример #13
0
        public void RegisterInstance_InstanceNull()
        {
            var helper = new NinjectHelper();

            var container = new StandardKernel();
            ExceptionTester.CallMethodAndExpectException<ArgumentNullException>(() => helper.RegisterInstance(container, typeof(ITestInterface), null));
        }
Пример #14
0
        public void RegisterInstance_ContainerNull()
        {
            var helper = new NinjectHelper();

            ExceptionTester.CallMethodAndExpectException<ArgumentNullException>(() => helper.RegisterInstance(null, typeof(ITestInterface), new TestClass1()));
        }
Пример #15
0
        public void RegisterType_Valid()
        {
            var helper = new NinjectHelper();

            var container = new StandardKernel();

            Assert.IsFalse(GetRegistrationInfo(container, (typeof(ITestInterface))));

            helper.RegisterType(container, typeof(ITestInterface), typeof(TestClass1), RegistrationType.Singleton);
            Assert.IsTrue(GetRegistrationInfo(container, typeof(ITestInterface)));
        }
Пример #16
0
        public void RegisterType_InvalidContainer()
        {
            var helper = new NinjectHelper();

            var container = new object();
            ExceptionTester.CallMethodAndExpectException<NotSupportedException>(() => helper.RegisterType(container, typeof(ITestInterface), typeof(TestClass1), RegistrationType.Singleton));
        }
Пример #17
0
        public void GetRegistrationInfo_ContainerNull()
        {
            var helper = new NinjectHelper();

            ExceptionTester.CallMethodAndExpectException<ArgumentNullException>(() => helper.GetRegistrationInfo(null, typeof(ITestInterface)));
        }
Пример #18
0
        public void ResolveType_InterfaceTypeNull()
        {
            var helper = new NinjectHelper();

            var container = new StandardKernel();
            ExceptionTester.CallMethodAndExpectException<ArgumentNullException>(() => helper.ResolveType(container, null));
        }
Пример #19
0
        public void ResolveType_InvalidContainer()
        {
            var helper = new NinjectHelper();

            var container = new object();
            ExceptionTester.CallMethodAndExpectException<NotSupportedException>(() => helper.ResolveType(container, typeof(ITestInterface)));
        }
Пример #20
0
        public void ResolveType_ContainerWithoutTypeRegistered()
        {
            var helper = new NinjectHelper();

            var container = new StandardKernel();
            ExceptionTester.CallMethodAndExpectException<NotSupportedException>(() => helper.ResolveType(container, typeof(ITestInterface)));
        }
Пример #21
0
        public void GetRegistrationInfo_ContainerWithSingletonTypeRegistered()
        {
            var helper = new NinjectHelper();

            var container = new StandardKernel();
            container.Bind<ITestInterface>().To<TestClass1>().InSingletonScope();

            var registrationInfo = helper.GetRegistrationInfo(container, typeof(ITestInterface));

            Assert.AreEqual(typeof(ITestInterface), registrationInfo.DeclaringType);
            Assert.AreEqual(RegistrationType.Singleton, registrationInfo.RegistrationType);
        }
Пример #22
0
        public void RegisterType_ContainerNull()
        {
            var helper = new NinjectHelper();

            ExceptionTester.CallMethodAndExpectException<ArgumentNullException>(() => helper.RegisterType(null, typeof(ITestInterface), typeof(TestClass1), RegistrationType.Singleton));
        }