Package com.scooterframework.test.models

Examples of com.scooterframework.test.models.Vet


 
  @Test public void test_findAll_limit_offset() {
    List<ActiveRecord> allVets = Vet.limit(1).offset(3).getRecords();
    assertEquals("total vets", 1, allVets.size());
   
    Vet vet = (Vet)allVets.get(0);
    assertEquals("vet's first name", "Rafael", vet.getField("first_name"));
  }
View Full Code Here

TOP

Related Classes of com.scooterframework.test.models.Vet

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.