Package com.alvazan.test.db

Examples of com.alvazan.test.db.NonVirtSuper


    mgr.flush();

    Cursor<NonVirtSuper> cursor = mgr.allRows(NonVirtSuper.class, "NonVirtSuper", 500);
    int count = 0;
    while(cursor.next()) {
      NonVirtSuper current = cursor.getCurrent();
      count++;
    }
    Assert.assertEquals(2, count);
  }
View Full Code Here

TOP

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

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.