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