]> 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
Fix issue with unit tests when using Maven 2.1.0
[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.argeo.slc.equinox.unit.AbstractOsgiRuntimeTestCase;
4 import org.osgi.framework.BundleContext;
5 import org.osgi.framework.Constants;
6
7 public class PlatformStartStopTest extends AbstractOsgiRuntimeTestCase {
8
9 public void testStartStop() {
10 BundleContext bundleContext = osgiBoot.getBundleContext();
11 System.out.println(bundleContext
12 .getProperty(Constants.FRAMEWORK_VENDOR));
13 System.out.println(bundleContext
14 .getProperty(Constants.FRAMEWORK_VERSION));
15 System.out.println(bundleContext
16 .getProperty(Constants.FRAMEWORK_EXECUTIONENVIRONMENT));
17
18 }
19 }