/*
 *2013-09-08
 *HW: Unit 2 Practice Assignment: Ch4 Exercise 5b
 *Bradley Forney
 *CIS 127
 *Professor: Craig Sharp
 * 
 */
 
public class TestSandwichFilling
{
	public static void main(String[] args)
	{
		SandwichFilling lemon 	= new SandwichFilling("Lemon", 600);
		SandwichFilling chocolate = new SandwichFilling("Chocolate", 750);
		SandwichFilling eggsalad = new SandwichFilling("Egg Salad", 800);
		
		System.out.println(lemon.getFillingType());
		System.out.println(lemon.getFillingCalories()+"\n");
		
		System.out.println(chocolate.getFillingType());
		System.out.println(chocolate.getFillingCalories()+"\n");
		
		System.out.println(eggsalad.getFillingType());
		System.out.println(eggsalad.getFillingCalories()+"\n");
	}
}