use of cn.edu.zjnu.acm.judge.data.form.AccountForm in project judge by zjnu-acm.
the class AccountServiceTest method testFindAll.
/**
* Test of findAll method, of class AccountService.
*/
@Test
public void testFindAll() {
log.info("findAll");
for (Pageable pageable : Pageables.users()) {
accountService.findAll(pageable);
for (AccountForm accountForm : buildForms()) {
accountService.findAll(accountForm, pageable);
accountService.findAll(accountForm.toBuilder().disabled(true).build(), pageable);
accountService.findAll(accountForm.toBuilder().disabled(false).build(), pageable);
}
}
}
Aggregations