public void CreateContainerShouldInitializeContainer()
        {
            var bootstrapper = new DefaultWindsorBootstrapper();

            IWindsorContainer container = bootstrapper.CallCreateContainer();

            Assert.IsNotNull(container);
            Assert.IsInstanceOfType(container, typeof(IWindsorContainer));
        }
Beispiel #2
0
        public void CreateContainerShouldInitializeContainer()
        {
            var bootstrapper = new DefaultWindsorBootstrapper();

            IWindsorContainer container = bootstrapper.CallCreateContainer();

            Assert.IsNotNull(container);
            Assert.IsInstanceOfType(container, typeof(IWindsorContainer));
        }