public class RecipeObjectMother {
public static Recipe friedEggRecipe() {
Recipe recipe = new Recipe("fried egg");
recipe.addIngredient(new Ingredient("egg", new Amount(1, Amount.Unit.PIECES), Ingredient.Type.Grocery));
recipe.addIngredient(new Ingredient("butter", new Amount(20, Amount.Unit.GRAMS), Ingredient.Type.Grocery));
return recipe;
}
public static Recipe steak() {
Recipe recipe = new Recipe("steak");