public void TestsSetup()
        {
            AutoMapperConfig.RegisterMappings();

            this.recipes = ServicesObjectFactory.GetRecipeService();

            this.controller       = new RecipesController(this.recipes);
            this.controller.Cache = new HttpCacheService();
        }
        public void TestsSetup()
        {
            AutoMapperConfig.RegisterMappings();

            this.recipesServiceMock  = ServicesObjectFactory.GetRecipeService();
            this.imagesServiceMock   = ServicesObjectFactory.GetRecipeImagesService();
            this.articlesServiceMock = ServicesObjectFactory.GetArticlesService();
            this.controller          = new HomeController(this.imagesServiceMock, this.recipesServiceMock, this.articlesServiceMock);
        }