Package com.avaje.tests.sp.model.car

Examples of com.avaje.tests.sp.model.car.Car


    wheels.add(new Wheel());
    wheels.add(new Wheel());
    wheels.add(new Wheel());
    wheels.add(new Wheel());

    Car c = new Car();
    c.setWheels(wheels);

    Ebean.save(c); // NOTE 1ST SAVE

    Assert.assertFalse("No ID assigned!", c.getId() == null);

    Ebean.save(c); // NOTE 2ND SAVE

    List<Car> allCars = Ebean.find(Car.class).findList();
    Assert.assertEquals("Inserted 1 car, received more/less!", 1, allCars.size());
View Full Code Here

TOP

Related Classes of com.avaje.tests.sp.model.car.Car

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.