Package com.manning.siia.kitchen.domain

Examples of com.manning.siia.kitchen.domain.Product


  private final Recipe recipe = mock(Recipe.class);
  private final Meal meal = new Meal(recipe);

  @Test
  public void shouldBeDoneWhenAllIngredientsAreCooked() throws Exception {
    Product soleProduct = mock(Product.class);
    given(recipe.isSatisfiedBy(Arrays.asList(soleProduct))).willReturn(true);

    meal.cook(soleProduct);
       
    assertThat(meal.isDone(), is(true));
View Full Code Here


  }
 
  @Test
  public void shouldBeSatisfiedByCorrectIngredients() throws Exception {
    Ingredient ingredient = mock(Ingredient.class);
    Product product = mock(Product.class);
    given(ingredient.isSatisfiedBy(product)).willReturn(true);

    recipe.addIngredient(ingredient);
    assertThat(recipe.isSatisfiedBy(Arrays.asList(product)), is(true));
  }
View Full Code Here

TOP

Related Classes of com.manning.siia.kitchen.domain.Product

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.