public ExtendedMvcApplicationTests()
        {
            container = new Mock <ContainerAdapter>();

            bootstrapper = new Mock <IBootstrapper>();
            bootstrapper.Setup(bs => bs.Adapter).Returns(container.Object);

            httpApplication = new ExtendedMvcApplicationTestDouble(bootstrapper.Object);
        }
        public ExtendedMvcApplicationTests()
        {
            container = new Mock<ContainerAdapter>();

            bootstrapper = new Mock<IBootstrapper>();
            bootstrapper.Setup(bs => bs.Adapter).Returns(container.Object);

            httpApplication = new ExtendedMvcApplicationTestDouble(bootstrapper.Object);
        }