Package org.apache.cayenne.itest.di_stack

Examples of org.apache.cayenne.itest.di_stack.Table1


    SelectQuery query = new SelectQuery(Table1.class);

    ObjectContext context1 = runtime.getContext();
    ObjectContext context2 = runtime.getContext();

    Table1 o1 = (Table1) Cayenne.objectForQuery(context1, query);
    Table1 o2 = (Table1) Cayenne.objectForQuery(context2, query);

    assertNotNull(o1);
    assertNotNull(o2);
    assertEquals("Abc", o1.getName());
    assertNotSame(o1, o2);
    assertEquals(o1.getObjectId(), o2.getObjectId());
  }
View Full Code Here


  public void testShutdown() throws Exception {

    // create a context and save some objects to warm up the stack...
    ObjectContext context1 = runtime.getContext();

    Table1 t1 = context1.newObject(Table1.class);
    t1.setName("XmKK");
    context1.commitChanges();

    // ensure that some of the services that require shutdown are
    // instantiated and check their state before and after
    EventManager em = runtime.getInjector().getInstance(EventManager.class);
View Full Code Here

    SelectQuery query = new SelectQuery(Table1.class);

    ObjectContext context1 = runtime.getContext();
    ObjectContext context2 = runtime.getContext();

    Table1 o1 = (Table1) Cayenne.objectForQuery(context1, query);
    Table1 o2 = (Table1) Cayenne.objectForQuery(context2, query);

    assertNotNull(o1);
    assertNotNull(o2);
    assertEquals("Abc", o1.getName());
    assertNotSame(o1, o2);
    assertEquals(o1.getObjectId(), o2.getObjectId());
  }
View Full Code Here

  public void testShutdown() throws Exception {

    // create a context and save some objects to warm up the stack...
    ObjectContext context1 = runtime.getContext();

    Table1 t1 = context1.newObject(Table1.class);
    t1.setName("XmKK");
    context1.commitChanges();

    // ensure that some of the services that require shutdown are
    // instantiated and check their state before and after
    EventManager em = runtime.getInjector().getInstance(EventManager.class);
View Full Code Here

TOP

Related Classes of org.apache.cayenne.itest.di_stack.Table1

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.