Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/resolver/TestRFC79_003.java')
-rw-r--r--bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/resolver/TestRFC79_003.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/resolver/TestRFC79_003.java b/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/resolver/TestRFC79_003.java
index bc7f55415..d116a1624 100644
--- a/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/resolver/TestRFC79_003.java
+++ b/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/resolver/TestRFC79_003.java
@@ -7,7 +7,7 @@
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
- *
+ *
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
@@ -31,7 +31,7 @@ public class TestRFC79_003 extends AbstractStateTest {
BundleDescription bundle_3 = null;
BundleDescription bundle_4 = null;
-
+
public void testTest_003() {
State state = buildEmptyState();
StateObjectFactory sof = StateObjectFactory.defaultFactory;
@@ -57,7 +57,7 @@ public class TestRFC79_003 extends AbstractStateTest {
checkWiring_a();
} // end of method
-
+
public void checkWiringState_1() {
ExportPackageDescription[] exports = bundle_1.getResolvedImports();
assertNotNull("export array is unexpectedly null", exports);
@@ -120,7 +120,7 @@ public class TestRFC79_003 extends AbstractStateTest {
} // end for
} // end method
-
+
public void checkWiring_a() {
checkWiringState_1();
@@ -129,7 +129,7 @@ public class TestRFC79_003 extends AbstractStateTest {
checkWiringState_4();
} // end method
-
+
public void addBundlesToState_a(State state) {
boolean added = false;
added = state.addBundle(bundle_1);
@@ -142,7 +142,7 @@ public class TestRFC79_003 extends AbstractStateTest {
assertTrue("failed to add bundle ", added);
} // end method
-
+
public void checkBundlesResolved_a() {
assertTrue("unexpected bundle resolution state", bundle_1.isResolved());
assertTrue("unexpected bundle resolution state", bundle_2.isResolved());
@@ -150,7 +150,7 @@ public class TestRFC79_003 extends AbstractStateTest {
assertTrue("unexpected bundle resolution state", bundle_4.isResolved());
} // end method
-
+
public BundleDescription create_bundle_1(StateObjectFactory sof) {
java.util.Dictionary dictionary_1 = new java.util.Properties();
BundleDescription bundle = null;

Back to the top