Package org.apache.cayenne.testdo.persistent

Examples of org.apache.cayenne.testdo.persistent.Continent


    
    public void testServer() throws Exception {
        deleteTestData();
       
        ObjectContext context = createContext();
        Continent continent = context.newObject(Continent.class);
        continent.setName("Europe");
       
        Country country = new Country();
        context.registerNewObject(country);
       
        //TODO: setting property before object creation does not work on ROP (CAY-1320)
        country.setName("Russia");
       
        country.setContinent(continent);
        assertEquals(continent.getCountries().size(), 1);
       
        context.commitChanges();
       
        context.deleteObject(country);
        assertEquals(continent.getCountries().size(), 0);
        continent.setName("Australia");
       
        context.commitChanges();
        context.performQuery(new RefreshQuery());
       
        assertEquals(context.performQuery(new SelectQuery(Country.class)).size(), 0);
View Full Code Here


        }
    }

    public void testServer() throws Exception {
        ObjectContext context = createContext();
        Continent continent = context.newObject(Continent.class);
        continent.setName("Europe");

        Country country = new Country();
        context.registerNewObject(country);

        // TODO: setting property before object creation does not work on ROP (CAY-1320)
        country.setName("Russia");

        country.setContinent(continent);
        assertEquals(continent.getCountries().size(), 1);

        context.commitChanges();

        context.deleteObjects(country);
        assertEquals(continent.getCountries().size(), 0);
        continent.setName("Australia");

        context.commitChanges();
        context.performQuery(new RefreshQuery());

        assertEquals(context.performQuery(new SelectQuery(Country.class)).size(), 0);
View Full Code Here

TOP

Related Classes of org.apache.cayenne.testdo.persistent.Continent

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.