Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.jst.ws.tests.performance/src/org/eclipse/jst/ws/tests/performance/AllPerformanceTests.java')
-rw-r--r--tests/org.eclipse.jst.ws.tests.performance/src/org/eclipse/jst/ws/tests/performance/AllPerformanceTests.java65
1 files changed, 0 insertions, 65 deletions
diff --git a/tests/org.eclipse.jst.ws.tests.performance/src/org/eclipse/jst/ws/tests/performance/AllPerformanceTests.java b/tests/org.eclipse.jst.ws.tests.performance/src/org/eclipse/jst/ws/tests/performance/AllPerformanceTests.java
deleted file mode 100644
index d12691ff1..000000000
--- a/tests/org.eclipse.jst.ws.tests.performance/src/org/eclipse/jst/ws/tests/performance/AllPerformanceTests.java
+++ /dev/null
@@ -1,65 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2004, 2007 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- * yyyymmdd bug Email and other contact information
- * -------- -------- -----------------------------------------------------------
- * 20070502 185208 sengpl@ca.ibm.com - Seng Phung-Lu
- * 20080313 126774 sengpl@ca.ibm.com - Seng Phung-Lu
- *******************************************************************************/
-package org.eclipse.jst.ws.tests.performance;
-
-import junit.framework.Test;
-import junit.framework.TestSuite;
-
-import org.eclipse.jst.ws.tests.axis.tomcat.v50.perfmsr.PerfmsrBUJavaAxisTC50;
-import org.eclipse.jst.ws.tests.axis.tomcat.v50.perfmsr.PerfmsrClientAxisTC50;
-import org.eclipse.jst.ws.tests.axis.tomcat.v50.perfmsr.PerfmsrTDJavaAxisTC50;
-import org.eclipse.jst.ws.tests.axis2.tomcat.v55.perfmsr.PerfmsrBUJavaAxis2TC55;
-import org.eclipse.jst.ws.tests.axis2.tomcat.v55.perfmsr.PerfmsrClientAxis2TC55;
-import org.eclipse.jst.ws.tests.axis2.tomcat.v55.perfmsr.PerfmsrTDJavaAxis2TC55;
-
-public class AllPerformanceTests {
-
- public static Test suite() {
-
- TestSuite suite = new TestSuite("Test for org.eclipse.jst.ws.tests.performance");
- //$JUnit-BEGIN$
-
- // Check for Tomcat 5.0 server
- String s = System.getProperty("org.eclipse.jst.server.tomcat.50");
- if (s==null){
- s = System.getProperty("tomcat50Dir");
- }
-
- if (s != null && s.length() > 0) {
- suite.addTestSuite(PerfmsrBUJavaAxisTC50.class);
- suite.addTestSuite(PerfmsrTDJavaAxisTC50.class);
- suite.addTestSuite(PerfmsrClientAxisTC50.class);
- } else {
- System.err.println("Warning: Tomcat 5.0 not found - performance tests skipped");
- }
-
- // Check for Tomcat 5.5 server
- s = System.getProperty("org.eclipse.jst.server.tomcat.55");
- if (s==null){
- s = System.getProperty("tomcat55Dir");
- }
-
- if (s != null && s.length() > 0) {
- suite.addTestSuite(PerfmsrBUJavaAxis2TC55.class);
- suite.addTestSuite(PerfmsrTDJavaAxis2TC55.class);
- suite.addTestSuite(PerfmsrClientAxis2TC55.class);
- } else {
- System.err.println("Warning: Tomcat 5.5 not found - performance tests skipped");
- }
-
- //$JUnit-END$
- return suite;
- }
-}

Back to the top