updated coding rules.
[utils] / system / general / src / test / java / org / wamblee / system / adapters / ConstructorConfigurationTest.java
index 0cec6fba5299f8ca833d1972dae978c674af0aef..fe0ece622431a7850ab50585d37b510a57feac8a 100644 (file)
@@ -37,8 +37,8 @@ public class ConstructorConfigurationTest extends AdapterTestCase {
 
                required.get(0).setProvider(provided);
 
-               _scope.publishInterface(provided, "hello");
-               config.create(_scope);
+               scope.publishInterface(provided, "hello");
+               config.create(scope);
 
                AssertionUtils.assertEquals(new String[] { "x1(hello)" }, AdapterTestCase.EVENT_TRACKER
                                .getEvents(Thread.currentThread()).toArray());
@@ -65,8 +65,8 @@ public class ConstructorConfigurationTest extends AdapterTestCase {
                assertEquals(1, required.size());
                required.get(0).setProvider(provided);
 
-               _scope.publishInterface(provided, "hello");
-               config.create(_scope);
+               scope.publishInterface(provided, "hello");
+               config.create(scope);
 
                AssertionUtils.assertEquals(new String[] { "x2(hello)" }, AdapterTestCase.EVENT_TRACKER
                                .getEvents(Thread.currentThread()).toArray());
@@ -77,7 +77,7 @@ public class ConstructorConfigurationTest extends AdapterTestCase {
                                .greedy();
                config.getParameters().setValue(0, "bla");
 
-               config.create(_scope);
+               config.create(scope);
 
                AssertionUtils.assertEquals(new String[] { "x1(bla)" }, AdapterTestCase.EVENT_TRACKER
                                .getEvents(Thread.currentThread()).toArray());
@@ -94,8 +94,8 @@ public class ConstructorConfigurationTest extends AdapterTestCase {
                assertEquals(1, required.size());
                required.get(0).setProvider(provided);
 
-               _scope.publishInterface(provided, "hello");
-               config.create(_scope);
+               scope.publishInterface(provided, "hello");
+               config.create(scope);
 
                AssertionUtils.assertEquals(new String[] { "x1(hello)" }, AdapterTestCase.EVENT_TRACKER
                                .getEvents(Thread.currentThread()).toArray());
@@ -107,7 +107,7 @@ public class ConstructorConfigurationTest extends AdapterTestCase {
                config.getParameters().setOptional(0);
                assertTrue(config.getRequiredInterfaces().get(0).isOptional());
 
-               config.create(_scope);
+               config.create(scope);
 
                AssertionUtils.assertEquals(new String[] { "x1(null)" }, AdapterTestCase.EVENT_TRACKER
                                .getEvents(Thread.currentThread()).toArray());
@@ -132,8 +132,8 @@ public class ConstructorConfigurationTest extends AdapterTestCase {
 
                required.get(0).setProvider(provided);
 
-               _scope.publishInterface(provided, "hello");
-               config.create(_scope);
+               scope.publishInterface(provided, "hello");
+               config.create(scope);
 
                AssertionUtils.assertEquals(new String[] { "x3(hello)" }, AdapterTestCase.EVENT_TRACKER
                                .getEvents(Thread.currentThread()).toArray());