use of org.baeldung.persistence.dao.MyUserPredicatesBuilder in project tutorials by eugenp.
the class JPAQuerydslIntegrationTest method givenLast_whenGettingListOfUsers_thenCorrect.
@Test
public void givenLast_whenGettingListOfUsers_thenCorrect() {
final MyUserPredicatesBuilder builder = new MyUserPredicatesBuilder().with("lastName", ":", "doe");
final Iterable<MyUser> results = repo.findAll(builder.build());
assertThat(results, containsInAnyOrder(userJohn, userTom));
}
Aggregations