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

            IWindsorContainer container = bootstrapper.CallCreateContainer();

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

            IWindsorContainer container = bootstrapper.CallCreateContainer();

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