Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaymond Auge2016-03-30 15:49:10 +0000
committerRaymond Auge2016-03-30 15:49:10 +0000
commitb2c2f9d8d173140793dd4d10f2ad42a800f69de2 (patch)
tree0102d9ef6c61957d39842667eae4967cf44e3280
parent9738d16e29bec82c3090eb718f594d4448b1aaa9 (diff)
downloadrt.equinox.bundles-b2c2f9d8d173140793dd4d10f2ad42a800f69de2.tar.gz
rt.equinox.bundles-b2c2f9d8d173140793dd4d10f2ad42a800f69de2.tar.xz
rt.equinox.bundles-b2c2f9d8d173140793dd4d10f2ad42a800f69de2.zip
Revert "Bug 429620 - What is up with org.eclipse.equinox.http.servlet.tests"
-rw-r--r--bundles/org.eclipse.equinox.compendium.tests/src/org/eclipse/equinox/event/tests/AllTests.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/bundles/org.eclipse.equinox.compendium.tests/src/org/eclipse/equinox/event/tests/AllTests.java b/bundles/org.eclipse.equinox.compendium.tests/src/org/eclipse/equinox/event/tests/AllTests.java
new file mode 100644
index 000000000..274e9813f
--- /dev/null
+++ b/bundles/org.eclipse.equinox.compendium.tests/src/org/eclipse/equinox/event/tests/AllTests.java
@@ -0,0 +1,22 @@
+/*******************************************************************************
+ * Copyright (c) 2010 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
+ *******************************************************************************/
+package org.eclipse.equinox.event.tests;
+
+import junit.framework.Test;
+import junit.framework.TestSuite;
+
+public class AllTests {
+ public static Test suite() {
+ TestSuite suite = new TestSuite("Tests for Equinox EventAdmin"); //$NON-NLS-1$
+ suite.addTestSuite(EventAdminTest.class);
+ return suite;
+ }
+}

Back to the top