public void when_resolving_whats_is_not_there_should_wrap_original_exception_with_container_exception()
        {
            var sut = new CastleContainerAdapter();

            sut.Get <given_a_simple_container.Interfaze>();
            Assert.Fail("Should have thrown an exception");
        }
 public void when_registering_already_registered_configuration_then_it_should_throw_container_exception()
 {
     var sut = new CastleContainerAdapter();
     sut.Register<given_a_simple_container.Interfaze, given_a_simple_container.Clazz>();
     sut.Register<given_a_simple_container.Interfaze, given_a_simple_container.Clazz>();
     Assert.Fail("Should have thrown an exception");
 }
        public void when_registering_already_registered_configuration_then_it_should_throw_container_exception()
        {
            var sut = new CastleContainerAdapter();

            sut.Register <given_a_simple_container.Interfaze, given_a_simple_container.Clazz>();
            sut.Register <given_a_simple_container.Interfaze, given_a_simple_container.Clazz>();
            Assert.Fail("Should have thrown an exception");
        }
        public void when_resolving_all_with_type_obviously_should_delegate_to_underlying_container()
        {
            var inner = new Mock <IWindsorContainer>(MockBehavior.Loose);
            var sut   = new CastleContainerAdapter(inner.Object);

            sut.GetAll(typeof(given_a_simple_container.Interfaze));

            inner.Verify(x => x.ResolveAll(It.Is <Type>(x1 => x1.Equals(typeof(given_a_simple_container.Interfaze)))));
        }
        public void when_resolving_all_obviously_should_delegate_to_underlying_container()
        {
            var inner = new Mock <IWindsorContainer>(MockBehavior.Loose);
            var sut   = new CastleContainerAdapter(inner.Object);

            sut.GetAll <given_a_simple_container.Interfaze>();

            inner.Verify(x => x.ResolveAll <given_a_simple_container.Interfaze>());
        }
        public void when_resolving_with_type_obviously_should_delegate_to_underlying_container()
        {
            var inner = new Mock<IWindsorContainer>(MockBehavior.Loose);
            var sut = new CastleContainerAdapter(inner.Object);

            sut.Get(typeof(given_a_simple_container.Interfaze));

            inner.Verify(x => x.Resolve(It.Is<Type>(x1 => x1.Equals(typeof (given_a_simple_container.Interfaze)))));
        }
        public void when_resolving_all_obviously_should_delegate_to_underlying_container()
        {
            var inner = new Mock<IWindsorContainer>(MockBehavior.Loose);
            var sut = new CastleContainerAdapter(inner.Object);

            sut.GetAll<given_a_simple_container.Interfaze>();

            inner.Verify(x => x.ResolveAll<given_a_simple_container.Interfaze>());
        }
        public void when_resolving_with_name_obviously_should_delegate_to_underlying_container()
        {
            var inner = new Mock <IWindsorContainer>(MockBehavior.Loose);
            var sut   = new CastleContainerAdapter(inner.Object);

            sut.Get <given_a_simple_container.Interfaze>("anonymousName");

            inner.Verify(
                x => x.Resolve <given_a_simple_container.Interfaze>(It.Is <string>(x1 => x1.Equals("anonymousName"))));
        }
        public void when_resolving_with_name_obviously_should_delegate_to_underlying_container()
        {
            var inner = new Mock<IWindsorContainer>(MockBehavior.Loose);
            var sut = new CastleContainerAdapter(inner.Object);

            sut.Get<given_a_simple_container.Interfaze>("anonymousName");

            inner.Verify(
                x => x.Resolve<given_a_simple_container.Interfaze>(It.Is<string>(x1 => x1.Equals("anonymousName"))));
        }
        public void when_registering_obviously_should_delegate_to_underlying_container()
        {
            var inner = new Mock <IWindsorContainer>(MockBehavior.Loose);
            var sut   = new CastleContainerAdapter(inner.Object);

            sut.Register <given_a_simple_container.Interfaze, given_a_simple_container.Clazz>();

            inner.Verify(
                x => x.Register(Match.Create <IRegistration[]>(x1 => x1.Contains(
                                                                   Component.For <given_a_simple_container.Interfaze>()
                                                                   .ImplementedBy <given_a_simple_container.Clazz>()
                                                                   .LifeStyle.Transient))));
        }
Ejemplo n.º 11
0
        public void when_registering_obviously_should_delegate_to_underlying_container()
        {
            var inner = new Mock<IWindsorContainer>(MockBehavior.Loose);
            var sut = new CastleContainerAdapter(inner.Object);

            sut.Register<given_a_simple_container.Interfaze, given_a_simple_container.Clazz>();

            inner.Verify(
                x => x.Register(Match.Create<IRegistration[]>(x1 => x1.Contains(
                    Component.For<given_a_simple_container.Interfaze>()
                    .ImplementedBy<given_a_simple_container.Clazz>()
                    .LifeStyle.Transient))));
        }
Ejemplo n.º 12
0
 public void when_resolving_whats_is_not_there_should_wrap_original_exception_with_container_exception()
 {
     var sut = new CastleContainerAdapter();
     sut.Get<given_a_simple_container.Interfaze>();
     Assert.Fail("Should have thrown an exception");
 }