/*
 *2013-09-08
 *HW: Unit 2 Practice Assignment: Ch4 Exercise 5a
 *Bradley Forney
 *CIS 127
 *Professor: Craig Sharp
 * 
 */
 
public class TestBread
{
	public static void main(String[] args)
	{
		Bread rye 	= new Bread("Rye", 320);
		Bread wheat = new Bread("Wheat", 230);
		Bread white = new Bread("White", 150);
		
		System.out.println(rye.getBreadType());
		System.out.println(rye.getBreadCalories());
		System.out.println(rye.MOTTO()+"\n");
		
		System.out.println(wheat.getBreadType());
		System.out.println(wheat.getBreadCalories());
		System.out.println(wheat.MOTTO()+"\n");
		
		System.out.println(white.getBreadType());
		System.out.println(white.getBreadCalories());
		System.out.println(white.MOTTO()+"\n");
		
	}
}