Package com.alvazan.test.db

Examples of com.alvazan.test.db.EntityWithDateTimeKey


    Assert.assertEquals(act.getSomething(), entity.getSomething());
  }
 
  @Test
  public void testLocalDateTimeKey() {
    EntityWithDateTimeKey k = new EntityWithDateTimeKey();
    k.setId(new LocalDateTime());
    k.setSomething("qwer");
   
    mgr.put(k);
    mgr.flush();
   
    NoSqlEntityManager mgr2 = factory.createEntityManager();
    EntityWithDateTimeKey entity = mgr2.find(EntityWithDateTimeKey.class, k.getId());
    Assert.assertEquals(k.getSomething(), entity.getSomething());
  }
View Full Code Here

TOP

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

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.