@Test
public void findOnePage() throws Exception {
// Given
// When
SearchParams searchParam = new SearchParams()
.add("project.owner", "yobi", Matching.EQUALS)
.add("project.name", "projectYobi", Matching.EQUALS)
.add("body", "", Matching.CONTAINS);
OrderParams orderParams = new OrderParams().add("id", Direction.DESC);
Page<Posting> page = FinderTemplate.getPage(orderParams, searchParam, Posting.finder, AbstractPostingApp.ITEMS_PER_PAGE, 0);