blob: 6fb41cb546a93a714246f081f7d1d3730ce2a498 [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.appclient.operations;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.wtp.headless.tests.savestrategy.AppClientImportOperationTest;
/**
* @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("App Client Tests");
addTest(AppClientExportOperationTest.suite());
addTest(AppClientImportOperationTest.suite());
addTest(AppClientProjectCreationOperationTest.suite());
}
}