Package com.alvazan.test.db

Examples of com.alvazan.test.db.EntityWithIntKey


  }
 
  @Test
  public void testIntegerKey() {
    //Activity has null reference to account
    EntityWithIntKey act = new EntityWithIntKey();
    act.setId(5);
    act.setSomething("asdf");
   
    mgr.put(act);
    mgr.flush();
   
    NoSqlEntityManager mgr2 = factory.createEntityManager();
    EntityWithIntKey entity = mgr2.find(EntityWithIntKey.class, act.getId());
    Assert.assertEquals(act.getSomething(), entity.getSomething());
  }
View Full Code Here

TOP

Related Classes of com.alvazan.test.db.EntityWithIntKey

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.