broccoli.setCategory(Category.Vegetable);
Ingredient apple = new Ingredient();
apple.setName("apple");
apple.setCategory(Category.Fruit);
Beverage b = new Beverage();
b.setName("zinc-fortified broccoli shake");
b.setProof(20);
Ingredient[] ingredients;
ingredients = new Ingredient[2];
ingredients[0] = zinc;
ingredients[1] = broccoli;
b.setIngredients(ingredients);
beverages.add(b);
b = new Beverage();
b.setName("apple broccoli shake");
b.setProof(50);
ingredients = new Ingredient[2];
ingredients[0] = apple;
ingredients[1] = broccoli;
b.setIngredients(ingredients);
beverages.add(b);
b = new Beverage();
b.setName("calcium-fortified apple juice");
b.setProof(13);
ingredients = new Ingredient[2];
ingredients[0] = apple;
ingredients[1] = calcium;
b.setIngredients(ingredients);
beverages.add(b);
}