* incorrect or the user doesn't exist
* @since James 1.2.2
*/
public boolean test(String name, String password) throws UsersRepositoryException {
User user = getUserByName(name, ignoreCase);
return user != null && user.verifyPassword(password);
}
/**
* Returns a count of the users in the repository.
*