Package com.google.appengine.api.datastore

Examples of com.google.appengine.api.datastore.PreparedQuery.countEntities()


  public final void testGetBySisId() {
    Sessao ses = new Sessao();
   
    // Check returned query
    PreparedQuery sessaoById = ses.getBySisId(1);
    assertEquals(1, sessaoById.countEntities(FetchOptions.Builder.withDefaults()));
   
    // Check all properties
    Entity sessao = sessaoById.asList(FetchOptions.Builder.withDefaults()).get(0);
    assertEquals("1", sessao.getProperty("cliente_id"));
    assertEquals(1l, sessao.getProperty("sis_id"));
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.