Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/simpleconfigurator/SimpleConfiguratorTests.java')
-rw-r--r--bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/simpleconfigurator/SimpleConfiguratorTests.java16
1 files changed, 15 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/simpleconfigurator/SimpleConfiguratorTests.java b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/simpleconfigurator/SimpleConfiguratorTests.java
index 454f30d8c..4eccacd1f 100644
--- a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/simpleconfigurator/SimpleConfiguratorTests.java
+++ b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/simpleconfigurator/SimpleConfiguratorTests.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2008 Red Hat, Inc. and others. All rights reserved. This
+ * Copyright (c) 2008, 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
@@ -15,11 +15,25 @@ public class SimpleConfiguratorTests {
public static Test suite() {
TestSuite suite = new TestSuite("Tests for org.eclipse.equinox.simpleconfigurator");
+
//$JUnit-BEGIN$
+
suite.addTestSuite(SimpleConfiguratorTest.class);
+ suite.addTestSuite(SimpleConfiguratorTestExtended.class);
+ suite.addTestSuite(SimpleConfiguratorTestExtendedConfigured.class);
+
suite.addTestSuite(SimpleConfiguratorUtilsTest.class);
+ suite.addTestSuite(SimpleConfiguratorUtilsExtendedTest.class);
+ suite.addTestSuite(SimpleConfiguratorUtilsExtendedConfiguredTest.class);
+
suite.addTestSuite(BundlesTxtTest.class);
+ suite.addTestSuite(BundlesTxtTestExtended.class);
+ suite.addTestSuite(BundlesTxtTestExtendedConfigured.class);
+
suite.addTestSuite(NonExclusiveMode.class);
+ suite.addTestSuite(NonExclusiveModeExtended.class);
+ suite.addTestSuite(NonExclusiveModeExtendedConfigured.class);
+
//$JUnit-END$
return suite;
}

Back to the top