* The equivalence classes for this test are: no DAO objects, 1 DAO object, 2 or more DAO objects.*/
public void testLoadAllUserRoles() throws Exception
{
//prepare the userRole mock object and init the service
final UserRoleDao roleDao = EasyMock.createMock( UserRoleDao.class );
final UserRoleServiceImpl roleService = new UserRoleServiceImpl();
roleService.setUserRoleDao(roleDao);
//test no objects scenario
testNoUserRoleLoad(roleDao, roleService);
//test 1 object scenario