Package nz.co.elysium.core

Examples of nz.co.elysium.core.Topping


    Pizza pizza;

    @Before
    public void setUp() throws Exception {
        // set up
        t1 = new Topping(1, "Cheese");
        t2 = new Topping(2, "Ham");
        t3 = new Topping(3, "Pineapple");
        pizza = new Pizza(3, "PizzaOne", (long)1000);
        pizza.addTopping(t1);
        pizza.addTopping(t2);
    }
View Full Code Here

TOP

Related Classes of nz.co.elysium.core.Topping

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.