Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2014-09-02 17:53:46 +0000
committerThomas Watson2014-09-02 18:03:18 +0000
commita1e29deb8ee99337f10b888db19febceb907d745 (patch)
tree41fb84e29849b8c57e251c5867b18a50ee858660
parent033dd7e0f4c681a98bce931b2797b3cbe77c35ec (diff)
downloadrt.equinox.framework-a1e29deb8ee99337f10b888db19febceb907d745.tar.gz
rt.equinox.framework-a1e29deb8ee99337f10b888db19febceb907d745.tar.xz
rt.equinox.framework-a1e29deb8ee99337f10b888db19febceb907d745.zip
Bug 441377 - test for null configuration
Change-Id: I07ca1389390273daf723f4c244c67f2e0ce2beb2 Signed-off-by: Thomas Watson <tjwatson@us.ibm.com>
-rw-r--r--bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/SystemBundleTests.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/SystemBundleTests.java b/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/SystemBundleTests.java
index 7970ec4e5..41affabec 100644
--- a/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/SystemBundleTests.java
+++ b/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/SystemBundleTests.java
@@ -2222,6 +2222,10 @@ public class SystemBundleTests extends AbstractBundleTests {
equinox.stop();
}
+ public void testNullConfiguration() {
+ new Equinox(null);
+ }
+
private static File[] createBundles(File outputDir, int bundleCount) throws IOException {
outputDir.mkdirs();

Back to the top