1 22 package org.jboss.ejb3.test.ejbthree751.unit; 23 24 import junit.framework.Test; 25 26 import org.jboss.test.JBossTestCase; 27 28 34 public class PassLocalRemoteDifferentInterfacesUnitTestCase extends JBossTestCase 35 { 36 public PassLocalRemoteDifferentInterfacesUnitTestCase(String name) 37 { 38 super(name); 39 } 40 41 public static Test suite() throws Exception 42 { 43 return getDeploySetup(PassLocalRemoteDifferentInterfacesUnitTestCase.class, null); 45 } 46 47 @Override 48 protected void tearDown() throws Exception 49 { 50 undeploy("ejbthree751-pass.jar"); 51 super.tearDown(); 52 } 53 54 public void testDeploymentSuccess() throws Exception 55 { 56 deploy("ejbthree751-pass.jar"); 57 } 58 } 59 | Popular Tags |