Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author2004-08-06 17:54:59 +0000
committer2004-08-06 17:54:59 +0000
commit345aa8bcdf4e6acc1133622e095bd82342d46f4c (patch)
treecee29e7d420a50162b92fae4ed3de0dcbfe62c8e /bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/perf/AllTests.java
parent9d6a4c24843cbf863919def823178d3990d23e22 (diff)
downloadrt.equinox.framework-345aa8bcdf4e6acc1133622e095bd82342d46f4c.tar.gz
rt.equinox.framework-345aa8bcdf4e6acc1133622e095bd82342d46f4c.tar.xz
rt.equinox.framework-345aa8bcdf4e6acc1133622e095bd82342d46f4c.zip
Added first performance testv20040806
Diffstat (limited to 'bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/perf/AllTests.java')
-rw-r--r--bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/perf/AllTests.java32
1 files changed, 32 insertions, 0 deletions
diff --git a/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/perf/AllTests.java b/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/perf/AllTests.java
new file mode 100644
index 000000000..fd712b7a2
--- /dev/null
+++ b/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/perf/AllTests.java
@@ -0,0 +1,32 @@
+/*******************************************************************************
+ * Copyright (c) 2004 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Common Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.osgi.tests.perf;
+
+import junit.framework.Test;
+import junit.framework.TestSuite;
+import org.eclipse.core.tests.harness.CorePerformanceTest;
+
+public class AllTests extends CorePerformanceTest {
+
+ public AllTests() {
+ super();
+ }
+
+ public AllTests(String name) {
+ super(name);
+ }
+
+ public static Test suite() {
+ TestSuite suite = new TestSuite(AllTests.class.getName());
+ suite.addTest(CachePerformanceTest.suite());
+ return suite;
+ }
+} \ No newline at end of file

Back to the top