use of org.summerb.easycrud.api.dto.PagerParams in project summerb by skarpushin.
the class GenericCrudServiceTestTemplate method testFindByQueryNumericNe.
@Test
public void testFindByQueryNumericNe() throws Exception {
createTestData();
PaginatedList<TestDto1> result = getTestDto1Service().query(new PagerParams(0, 100), Query.n().ne("majorVersion", 3));
assertEquals(1, result.getTotalResults());
}
Aggregations