this.authenticationHandler.setFileName(new ClassPathResource("org/jasig/cas/adaptors/generic/authentication.txt"));
}
public void testSupportsProperUserCredentials() {
UsernamePasswordCredentials c = new UsernamePasswordCredentials();
c.setUsername("scott");
c.setPassword("rutgers");
try {
this.authenticationHandler.authenticate(c);
} catch (UnsupportedCredentialsException e) {
fail("UnsupportedCredentialsException caught");
} catch (AuthenticationException e) {