use of com.enonic.xp.issue.FindIssuesResult in project xp by enonic.
the class IssueServiceImplTest_findIssues method find.
@Test
public void find() throws Exception {
IssueQuery query = IssueQuery.create().build();
final FindIssuesResult result = this.issueService.findIssues(query);
assertNotNull(result);
assertEquals(3, result.getHits());
}
Aggregations