Esempio n. 1
0
        public void SetUp()
        {
            //Setup mocks
            _foodplanCollector = Substitute.For <IFoodplanCollector>();
            _recipeCollector   = Substitute.For <IRecipeCollector>();
            _msgService        = Substitute.For <IMessageBoxService>();
            _itemCollector     = Substitute.For <IItemCollector>();
            _userCollector     = Substitute.For <IUserCollector>();

            //Setup reals
            _scheduler         = new TimerScheduler(2);
            _loginModel        = new LoginModel(_userCollector);
            _recipeListModel   = new RecipeListModel(_recipeCollector);
            _shoppingListModel = new ScheduledShoppingListModel(_itemCollector, _scheduler, _loginModel);
            _foodplanModel     = new FoodplanModel(_foodplanCollector, _shoppingListModel, _recipeListModel, _loginModel, _msgService);
            _sut = new FoodplanViewModel(_foodplanModel)
            {
                Foodplan = new ObservableCollection <Recipe>()
            };
            _foodplanModel.Foodplan.RecipeList = new List <Tuple <Recipe, DateTime> >();

            //Login with Henrik
            _userCollector.DoesUserExist("", "").ReturnsForAnyArgs(true);
            _loginModel.Login("Henrik", "secret");
        }
 /// <summary>
 /// Sets up the AddRecipeWindowViewModel using constructor injection
 /// </summary>
 /// <param name="recipeListModel"></param>
 /// <param name="imageChooser"></param>
 public AddRecipeWindowViewModel(IRecipeListModel recipeListModel, IImageChooser imageChooser)
 {
     _recipeListModel     = recipeListModel;
     _imageChooser        = imageChooser;
     _imageChooser.Filter = "Image files (*.jpg, *.jpeg) | *.jpg; *.jpeg;";
     Ingredients          = new ObservableCollection <Ingredient>();
 }
 /// <summary>
 /// Sets up the AddRecipeWindowViewModel using constructor injection
 /// </summary>
 /// <param name="recipeListModel"></param>
 /// <param name="imageChooser"></param>
 public AddRecipeWindowViewModel(IRecipeListModel recipeListModel, IImageChooser imageChooser)
 {
     _recipeListModel = recipeListModel;
     _imageChooser = imageChooser;
     _imageChooser.Filter = "Image files (*.jpg, *.jpeg) | *.jpg; *.jpeg;";
     Ingredients = new ObservableCollection<Ingredient>();
 }
 public void SetUp()
 {
     _recipeSizeWidth = 220;
     _model           = Substitute.For <IRecipeListModel>();
     _foodplan        = Substitute.For <IFoodplanModel>();
     _shoppingList    = Substitute.For <IShoppingListModel>();
     _uut             = new RecipeListViewModel(_model, _recipeSizeWidth, _foodplan, _shoppingList);
 }
 public void SetUp()
 {
     _recipeSizeWidth = 220;
     _model = Substitute.For<IRecipeListModel>();
     _foodplan = Substitute.For<IFoodplanModel>();
     _shoppingList = Substitute.For<IShoppingListModel>();
     _msgBoxService = Substitute.For<IMessageBoxService>();
     _uut = new RecipeListViewModel(_model, _recipeSizeWidth, _foodplan, _msgBoxService);
 }
Esempio n. 6
0
 /// <summary>
 /// Sets up the foodplan model with constructorinjection of all its properties
 /// </summary>
 /// <param name="foodplanCollector"></param>
 /// <param name="shoppingListModel"></param>
 /// <param name="recipeListModel"></param>
 /// <param name="loginModel"></param>
 /// <param name="msgBoxService"></param>
 public FoodplanModel(IFoodplanCollector foodplanCollector, IShoppingListModel shoppingListModel,
                      IRecipeListModel recipeListModel, ILoginModel loginModel, IMessageBoxService msgBoxService)
 {
     _foodplanCollector = foodplanCollector;
     _shoppingListModel = shoppingListModel;
     _recipeListModel   = recipeListModel;
     _loginModel        = loginModel;
     _msgBoxService     = msgBoxService;
     _foodPlan          = new Foodplan();
 }
        /// <summary>
        /// Sets up the foodplan model with constructorinjection of all its properties
        /// </summary>
        /// <param name="foodplanCollector"></param>
        /// <param name="shoppingListModel"></param>
        /// <param name="recipeListModel"></param>
        /// <param name="loginModel"></param>
        /// <param name="msgBoxService"></param>
        public FoodplanModel(IFoodplanCollector foodplanCollector, IShoppingListModel shoppingListModel,
		IRecipeListModel recipeListModel, ILoginModel loginModel, IMessageBoxService msgBoxService)
        {
            _foodplanCollector = foodplanCollector;
            _shoppingListModel = shoppingListModel;
            _recipeListModel = recipeListModel;
			_loginModel = loginModel;
            _msgBoxService = msgBoxService;
            _foodPlan = new Foodplan();
		}
Esempio n. 8
0
        public void Setup()
        {
            //Setup mocks
            _recipeCollector = Substitute.For <IRecipeCollector>();
            _imageChooser    = Substitute.For <IImageChooser>();

            //Setup reals
            _model = new RecipeListModel(_recipeCollector);
            _sut   = new AddRecipeWindowViewModel(_model, _imageChooser);
        }
        public void Setup()
        {
            //Setup mocks
            _recipeCollector = Substitute.For<IRecipeCollector>();
            _imageChooser = Substitute.For<IImageChooser>();

            //Setup reals
            _model = new RecipeListModel(_recipeCollector);
            _sut = new AddRecipeWindowViewModel(_model, _imageChooser);
        }
Esempio n. 10
0
 /// <summary>
 /// Sets up the RecipeListViewModel using constructor injection
 /// </summary>
 /// <param name="recipeListModel"></param>
 /// <param name="recipeWidthSize"></param>
 /// <param name="foodplan"></param>
 /// <param name="msgBoxService"></param>
 public RecipeListViewModel(IRecipeListModel recipeListModel, int recipeWidthSize,
                            IFoodplanModel foodplan, IMessageBoxService msgBoxService)
 {
     _fac             = new SubWindowFactory();
     _recipeWidthSize = recipeWidthSize;
     _recipeListModel = recipeListModel;
     _foodplan        = foodplan;
     _msgBoxService   = msgBoxService;
     SizeChanged(FrameworkElement.ActualWidthProperty.GlobalIndex);
     _recipeList = new ObservableCollection <Recipe>();
     _fac        = new SubWindowFactory();
     _recipeListModel.RecipeListUpdatedEvent += RecipeListUpdatedEventHandler;
 }
 /// <summary>
 /// Sets up the RecipeListViewModel using constructor injection
 /// </summary>
 /// <param name="recipeListModel"></param>
 /// <param name="recipeWidthSize"></param>
 /// <param name="foodplan"></param>
 /// <param name="msgBoxService"></param>
 public RecipeListViewModel(IRecipeListModel recipeListModel, int recipeWidthSize,
     IFoodplanModel foodplan, IMessageBoxService msgBoxService)
 {
     _fac = new SubWindowFactory();
     _recipeWidthSize = recipeWidthSize;
     _recipeListModel = recipeListModel;
     _foodplan = foodplan;
     _msgBoxService = msgBoxService;
     SizeChanged(FrameworkElement.ActualWidthProperty.GlobalIndex);
     _recipeList = new ObservableCollection<Recipe>();
     _fac = new SubWindowFactory();
     _recipeListModel.RecipeListUpdatedEvent += RecipeListUpdatedEventHandler;
 }
        public void Setup()
        {
            _foodplanCollector = Substitute.For <IFoodplanCollector>();
            _shoppingListModel = Substitute.For <IShoppingListModel>();
            _recipeListModel   = Substitute.For <IRecipeListModel>();
            _loginModel        = Substitute.For <ILoginModel>();
            _msgBoxService     = Substitute.For <IMessageBoxService>();

            _uut          = new FoodplanModel(_foodplanCollector, _shoppingListModel, _recipeListModel, _loginModel, _msgBoxService);
            _uut.Foodplan = new Foodplan()
            {
                RecipeList = new List <Tuple <Recipe, DateTime> >()
            };
        }
Esempio n. 13
0
        public void Setup()
        {
            //Setup mocks
            _foodplanCollector = Substitute.For <IFoodplanCollector>();
            _itemCollector     = Substitute.For <IItemCollector>();
            _userCollector     = Substitute.For <IUserCollector>();
            _recipeCollector   = Substitute.For <IRecipeCollector>();

            //Setup reals
            _loginModel        = new LoginModel(_userCollector);
            _shoppingListModel = new ScheduledShoppingListModel
                                     (_itemCollector, new TimerScheduler(60), _loginModel);
            _recipeListModel = new RecipeListModel(_recipeCollector);

            // Uut
            _uut          = new FoodplanModel(_foodplanCollector, _shoppingListModel, _recipeListModel, _loginModel);
            _uut.Foodplan = new Foodplan()
            {
                RecipeList = new List <Tuple <Recipe, DateTime> >()
            };
        }
        public void SetUp()
        {
            _recipeSizeWidth = 220;
            //Setup mocks
            _foodplanCollector = Substitute.For<IFoodplanCollector>();
            _recipeCollector = Substitute.For<IRecipeCollector>();
            _msgService = Substitute.For<IMessageBoxService>();
            _itemCollector = Substitute.For<IItemCollector>();
            _userCollector = Substitute.For<IUserCollector>();
            _shoppingListModel = Substitute.For<IShoppingListModel>();

            //Setup reals
            _loginModel = new LoginModel(_userCollector);
            _recipeListModel = new RecipeListModel(_recipeCollector);
            _foodplanModel = new FoodplanModel(_foodplanCollector, _shoppingListModel, _recipeListModel, _loginModel, _msgService);
            _foodplanModel.Foodplan.RecipeList = new List<Tuple<Recipe, DateTime>>();
            _sut = new RecipeListViewModel(_recipeListModel, _recipeSizeWidth, _foodplanModel, _msgService);

            //Login with Henrik
            _userCollector.DoesUserExist("", "").ReturnsForAnyArgs(true);
            _loginModel.Login("Henrik", "secret");
        }
Esempio n. 15
0
        public void SetUp()
        {
            _recipeSizeWidth = 220;
            //Setup mocks
            _foodplanCollector = Substitute.For <IFoodplanCollector>();
            _recipeCollector   = Substitute.For <IRecipeCollector>();
            _msgService        = Substitute.For <IMessageBoxService>();
            _itemCollector     = Substitute.For <IItemCollector>();
            _userCollector     = Substitute.For <IUserCollector>();
            _shoppingListModel = Substitute.For <IShoppingListModel>();

            //Setup reals
            _loginModel      = new LoginModel(_userCollector);
            _recipeListModel = new RecipeListModel(_recipeCollector);
            _foodplanModel   = new FoodplanModel(_foodplanCollector, _shoppingListModel, _recipeListModel, _loginModel, _msgService);
            _foodplanModel.Foodplan.RecipeList = new List <Tuple <Recipe, DateTime> >();
            _sut = new RecipeListViewModel(_recipeListModel, _recipeSizeWidth, _foodplanModel, _msgService);

            //Login with Henrik
            _userCollector.DoesUserExist("", "").ReturnsForAnyArgs(true);
            _loginModel.Login("Henrik", "secret");
        }
Esempio n. 16
0
        public void SetUp()
        {
            //Setup mocks
            _foodplanCollector = Substitute.For<IFoodplanCollector>();
            _recipeCollector = Substitute.For<IRecipeCollector>();
            _msgService = Substitute.For<IMessageBoxService>();
            _itemCollector = Substitute.For<IItemCollector>();
            _userCollector = Substitute.For<IUserCollector>();

            //Setup reals
            _scheduler = new TimerScheduler(2);
            _loginModel = new LoginModel(_userCollector);
            _recipeListModel = new RecipeListModel(_recipeCollector);
            _shoppingListModel = new ScheduledShoppingListModel(_itemCollector, _scheduler, _loginModel);
            _foodplanModel = new FoodplanModel (_foodplanCollector, _shoppingListModel, _recipeListModel, _loginModel, _msgService);
            _sut = new FoodplanViewModel(_foodplanModel) { Foodplan = new ObservableCollection<Recipe>() };
            _foodplanModel.Foodplan.RecipeList = new List<Tuple<Recipe, DateTime>>();

            //Login with Henrik
            _userCollector.DoesUserExist("", "").ReturnsForAnyArgs(true);
            _loginModel.Login("Henrik", "secret");
        }
 public void Setup()
 {
     _imageChooser = Substitute.For<IImageChooser>();
     _model = Substitute.For<IRecipeListModel>();
     _uut = new AddRecipeWindowViewModel(_model, _imageChooser);
 }
 public void Setup()
 {
     _imageChooser = Substitute.For <IImageChooser>();
     _model        = Substitute.For <IRecipeListModel>();
     _uut          = new AddRecipeWindowViewModel(_model, _imageChooser);
 }