1 22 package org.jboss.test.web.test; 23 24 import org.jboss.test.JBossTestCase; 25 26 33 public class WebCtxLoaderTestCase extends JBossTestCase 34 { 35 public WebCtxLoaderTestCase(String name) 36 { 37 super(name); 38 } 39 40 44 public void testWebInfLibOnlyJars() throws Exception  45 { 46 try 47 { 48 deploy("jbosstest-webctx.war"); 49 }catch(Exception e) 50 { 51 fail(e.getLocalizedMessage()); 52 } 53 undeploy("jbosstest-webctx.war"); 54 } 55 56 } 57 | Popular Tags |