Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/planner/AllAnyVersionTests.java')
-rw-r--r--bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/planner/AllAnyVersionTests.java27
1 files changed, 27 insertions, 0 deletions
diff --git a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/planner/AllAnyVersionTests.java b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/planner/AllAnyVersionTests.java
new file mode 100644
index 000000000..cf742e742
--- /dev/null
+++ b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/planner/AllAnyVersionTests.java
@@ -0,0 +1,27 @@
+/*******************************************************************************
+ * Copyright (c) 2013 Red Hat, Inc. 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:
+ * Red Hat, Inc. - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.equinox.p2.tests.planner;
+
+import junit.framework.*;
+
+public class AllAnyVersionTests extends TestCase {
+
+ public static Test suite() {
+ TestSuite suite = new TestSuite(AllAnyVersionTests.class.getName());
+ suite.addTestSuite(TestRequestFlexerIUProperties.class);
+ suite.addTestSuite(TestRequestFlexerOneInstalledOneBeingInstalled.class);
+ suite.addTestSuite(TestRequestFlexerOneInstalledReplacingIt.class);
+ suite.addTestSuite(TestRequestFlexerOneInstalledTwoBeingInstalled.class);
+ suite.addTestSuite(TestRequestFlexerRequestWithOptionalInstall.class);
+ suite.addTestSuite(TestRequestFlexerRequestWithRemoval.class);
+ return suite;
+ }
+}

Back to the top