Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2014-09-02 17:53:46 +0000
committerThomas Watson2014-09-02 17:53:46 +0000
commitf7b67237bf57e0558b0fe0f45b3d5aae5b95b871 (patch)
treeaf990d0a0e7f7ed4e58781fb7bd44611ce376418
parent85e405e6cf581afc1b19c68698b2e09da401e804 (diff)
downloadrt.equinox.framework-f7b67237bf57e0558b0fe0f45b3d5aae5b95b871.tar.gz
rt.equinox.framework-f7b67237bf57e0558b0fe0f45b3d5aae5b95b871.tar.xz
rt.equinox.framework-f7b67237bf57e0558b0fe0f45b3d5aae5b95b871.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