public void sets_up_the_icontainerfacade_to_wrap_itself()
        {
            var theView = new TheView();
            container.Inject(theView);

            container.GetInstance<IContainerFacade>()
                .ShouldBeOfType<StructureMapContainerFacade>()
                .Container.ShouldBeTheSameAs(container);
        }
        public void sets_up_the_icontainerfacade_to_wrap_itself()
        {
            var theView = new TheView();

            container.Inject(theView);

            container.GetInstance <IContainerFacade>()
            .ShouldBeOfType <StructureMapContainerFacade>()
            .Container.ShouldBeTheSameAs(container);
        }