blob: 0e30b0d425b247a6428c7723047a4e299d6d6b42 [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.plugin;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.core.runtime.Path;
import org.eclipse.wst.server.core.IRuntime;
import org.eclipse.wst.server.core.IRuntimeType;
import org.eclipse.wst.server.core.IRuntimeWorkingCopy;
import org.eclipse.wst.server.core.ServerCore;
/**
* @author jsholl
*
* To change the template for this generated type comment go to Window - Preferences - Java - Code Generation - Code
* and Comments
*/
public class AllPluginTests extends TestSuite {
public static IRuntime JONAS_SERVER = createJONASRuntime();
public static Test suite() {
return new AllPluginTests();
}
public AllPluginTests() {
super();
org.eclipse.wtp.j2ee.headless.tests.j2ee.verifiers.DataModelVerifierFactory.getInstance();
addTest(org.eclipse.wtp.j2ee.headless.tests.ejb.operations.AllTests.suite());
addTest(org.eclipse.wtp.j2ee.headless.tests.web.operations.AllTests.suite());
addTest(org.eclipse.wtp.j2ee.headless.tests.jca.operations.AllTests.suite());
addTest(org.eclipse.wtp.j2ee.headless.tests.ear.operations.AllTests.suite());
addTest(org.eclipse.wtp.j2ee.headless.tests.appclient.operations.AllTests.suite());
addTest(org.eclipse.jst.j2ee.tests.modulecore.AllTests.suite());
}
public static IRuntime createJONASRuntime() {
String s = System.getProperty("org.eclipse.jst.server.jonas.432");
if (s == null || s.length() == 0)
return null;
try {
IRuntimeType rt = ServerCore.findRuntimeType("org.eclipse.jst.server.core.runtimeType");
IRuntimeWorkingCopy wc = rt.createRuntime(null, null);
wc.setLocation(new Path(s));
return wc.save(true, null);
} catch (Exception e) {
e.printStackTrace();
return null;
}
}
}