summaryrefslogtreecommitdiffstats
path: root/java/sca/modules/implementation-osgi-runtime/src/test
diff options
context:
space:
mode:
authorrfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68>2009-03-16 22:04:54 +0000
committerrfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68>2009-03-16 22:04:54 +0000
commit9084bd19216f4865f63d7d68f3d4c3ac6f9d37f4 (patch)
tree92c8a4294ca795b146a0ab58d9527d1cab6f7383 /java/sca/modules/implementation-osgi-runtime/src/test
parentcefd69376ea57f21a5f5e7cc23883ef05bb5be96 (diff)
Start to hook up the osgi-based node
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@755018 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/sca/modules/implementation-osgi-runtime/src/test')
-rw-r--r--java/sca/modules/implementation-osgi-runtime/src/test/java/calculator/dosgi/test/CalculatorOSGiNodeTestCase.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/java/sca/modules/implementation-osgi-runtime/src/test/java/calculator/dosgi/test/CalculatorOSGiNodeTestCase.java b/java/sca/modules/implementation-osgi-runtime/src/test/java/calculator/dosgi/test/CalculatorOSGiNodeTestCase.java
index abd2985005..1dee0b1ae7 100644
--- a/java/sca/modules/implementation-osgi-runtime/src/test/java/calculator/dosgi/test/CalculatorOSGiNodeTestCase.java
+++ b/java/sca/modules/implementation-osgi-runtime/src/test/java/calculator/dosgi/test/CalculatorOSGiNodeTestCase.java
@@ -85,6 +85,7 @@ public class CalculatorOSGiNodeTestCase {
bundles.add(getCodeLocation(OSGiImplementation.class));
bundles.add(getCodeLocation(OSGiBundleContributionScanner.class));
+ bundles.add(getCodeLocation(NodeImpl.class));
bundles.add(OSGiTestBundles.createBundle("target/test-classes/calculator-bundle.jar",
"calculator/dosgi/META-INF/MANIFEST.MF",
@@ -131,8 +132,6 @@ public class CalculatorOSGiNodeTestCase {
for (Bundle b : context.getBundles()) {
if (b.getSymbolicName().equals("calculator.dosgi")) {
b.start();
- NodeImpl node = new NodeImpl(b);
- node.start();
System.out.println(string(b, false));
}
}