]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.equinox/src/test/java/org/argeo/slc/osgi/test/PlatformStartStopTest.java
Improve error reporting
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.equinox / src / test / java / org / argeo / slc / osgi / test / PlatformStartStopTest.java
1 package org.argeo.slc.osgi.test;
2
3 import org.osgi.framework.BundleContext;
4 import org.osgi.framework.Constants;
5
6 public class PlatformStartStopTest extends AbstractOsgiRuntimeTestCase {
7
8 public void testStartStop() {
9 BundleContext bundleContext = osgiBoot.getBundleContext();
10 System.out.println(bundleContext
11 .getProperty(Constants.FRAMEWORK_VENDOR));
12 System.out.println(bundleContext
13 .getProperty(Constants.FRAMEWORK_VERSION));
14 System.out.println(bundleContext
15 .getProperty(Constants.FRAMEWORK_EXECUTIONENVIRONMENT));
16
17 }
18 }