Package jfun.yan.web

Examples of jfun.yan.web.YanLoaderListener.contextDestroyed()


  private void verifyListener(ServletContext sc, String beanname){
    ServletContextListener listener = new YanLoaderListener();
    ServletContextEvent event = new ServletContextEvent(sc);
    listener.contextInitialized(event);
    final BankAccount acct = verifyBean(sc, beanname);
    listener.contextDestroyed(event);
    assertTrue(acct.isDestroyed());
  }
  private BankAccount verifyBean(ServletContext sc, String beanname){
    Container yan = (Container)
    sc.getAttribute(YanLoader.CONTAINER_ROOT);
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.