Package de.linwave.junit.inheritance

Examples of de.linwave.junit.inheritance.Customer


      for (int i = 0; i < MAX; i++) {
        Person p = new Person("Joeckel", "Lothar");
        db.store(p);

        Customer customer = new Customer("CUST4711", "CUSTOMER");
        customer.setFirstName("customerFirstName");
        customer.setLastName("customerLastname");
        db.store(customer);

        GoldCustomer gold = new GoldCustomer("GOLD4712", "GOLD_CUSTOMER");
        gold.setFirstName("goldCustomerFirstName");
        gold.setLastName("goldCustomerLastname");
View Full Code Here

TOP

Related Classes of de.linwave.junit.inheritance.Customer

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.