1 22 package org.jboss.test.deployers.rar.test; 23 24 import java.util.HashSet ; 25 26 import junit.framework.Test; 27 28 import org.jboss.test.deployers.AbstractDeploymentTest; 29 30 36 public class UnpackedRARDeploymentUnitTestCase extends AbstractDeploymentTest 37 { 38 39 public void testRARDeployment() throws Exception 40 { 41 final HashSet expected = new HashSet (); 42 expected.add(rar1DeploymentUnpacked); 43 expected.add(rarjar1Deployment); 44 45 assertDeployed(rar1DeploymentUnpacked, expected); 46 } 47 48 public UnpackedRARDeploymentUnitTestCase(String test) 49 { 50 super(test); 51 } 52 53 public static Test suite() throws Exception 54 { 55 return getDeploySetup(UnpackedRARDeploymentUnitTestCase.class, rar1DeploymentUnpacked); 56 } 57 } 58 | Popular Tags |