package candy;

/**
 * The main driver for the various candy files.  Intended primarily
 * for testing.
 *
 * @author Samuel A. Rebelsky
 * @version 1.1 of September 2006
 */
public class Main
{
	public static void main(String[] args)
		throws Exception
	{
		CandyMachineTester cmt = 
			new CandyMachineTester(
                new DoubleCandyMachine(
                    new DoubleCandyMachine(
                        new GumballMachine())));
		cmt.runTest();
	} // main(String[])
} // class Main

