use of org.osgi.service.subsystem.Subsystem in project aries by apache.
the class SubsystemDependency_4ATest method verifyBundleEWiredToCapability_yFromBundleB.
@Test
public void verifyBundleEWiredToCapability_yFromBundleB() throws Exception {
Subsystem s = installSubsystemFromFile(APPLICATION_A);
startSubsystem(s);
verifyCapabilityWiring(s, BUNDLE_E, "y", BUNDLE_B);
stopSubsystem(s);
uninstallSubsystem(s);
}
use of org.osgi.service.subsystem.Subsystem in project aries by apache.
the class SubsystemDependency_4ATest method verifyBundleCWiredToPackageXFromBundleA.
@Test
public void verifyBundleCWiredToPackageXFromBundleA() throws Exception {
Subsystem s = installSubsystemFromFile(APPLICATION_A);
startSubsystem(s);
verifySinglePackageWiring(s, BUNDLE_C, "x", BUNDLE_A);
stopSubsystem(s);
uninstallSubsystem(s);
}
use of org.osgi.service.subsystem.Subsystem in project aries by apache.
the class SubsystemDependency_4BTest method verifyBundleCWiredToPackage_xFromBundleA.
@Test
public void verifyBundleCWiredToPackage_xFromBundleA() throws Exception {
Subsystem s = installSubsystemFromFile(APPLICATION_B);
startSubsystem(s);
verifySinglePackageWiring(s, BUNDLE_C, "x", BUNDLE_A);
stopSubsystem(s);
}
use of org.osgi.service.subsystem.Subsystem in project aries by apache.
the class SubsystemDependency_4BTest method verifyBundleDWiredToBundleA.
@Test
public void verifyBundleDWiredToBundleA() throws Exception {
Subsystem s = installSubsystemFromFile(APPLICATION_B);
startSubsystem(s);
verifyRequireBundleWiring(s, BUNDLE_D, BUNDLE_A);
stopSubsystem(s);
}
use of org.osgi.service.subsystem.Subsystem in project aries by apache.
the class SubsystemDependency_4BTest method verifyBundleEWiredToCapability_yFromBundleB.
@Test
public void verifyBundleEWiredToCapability_yFromBundleB() throws Exception {
Subsystem s = installSubsystemFromFile(APPLICATION_B);
startSubsystem(s);
verifyCapabilityWiring(s, BUNDLE_E, "y", BUNDLE_B);
stopSubsystem(s);
}
Aggregations