public class CasEntryPointTest {
@Test(expectedExceptions = IllegalArgumentException.class)
public void testDetectsMissingUrl() throws Exception {
CasConfig config = new CasConfig();
config.afterPropertiesSet();
CasEntryPoint ep = new CasEntryPoint(config);
ep.afterPropertiesSet();
}
@Test(expectedExceptions = IllegalArgumentException.class)