blob: 710ba704dfb3294ebb76b7588cc76bf331af5df5 [file] [log] [blame]
/*
* Created on Feb 2, 2004
*
* To change the template for this generated file go to
* Window - Preferences - Java - Code Generation - Code and Comments
*/
package org.eclipse.wtp.j2ee.headless.tests.ejb.operations;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.jst.j2ee.flexible.project.fvtests.EJBDeployTest;
/**
* @author jsholl
*
* To change the template for this generated type comment go to
* Window - Preferences - Java - Code Generation - Code and Comments
*/
public class AllTests extends TestSuite {
public static Test suite(){
return new AllTests();
}
public AllTests(){
super("EJB Operation Tests");
addTest(EJBExportOperationTest.suite());
addTest(EJBImportOperationTest.suite());
addTest(EJBProjectCreationOperationTest.suite());
addTest(AddEJBeanOperationTest.suite());
addTest(EJBDeployTest.suite());
}
}