Package org.beangle.security.cas

Examples of org.beangle.security.cas.CasConfig.afterPropertiesSet()


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)
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.