X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=system%2Fgeneral%2Fsrc%2Ftest%2Fjava%2Forg%2Fwamblee%2Fsystem%2Fadapters%2FConstructorConfigurationTest.java;h=fe0ece622431a7850ab50585d37b510a57feac8a;hb=0d8d8f24656e585ee75558cfd6a4c661f8f14985;hp=0cec6fba5299f8ca833d1972dae978c674af0aef;hpb=da48a523c81e59fe0eac34e43d12937396161f25;p=utils diff --git a/system/general/src/test/java/org/wamblee/system/adapters/ConstructorConfigurationTest.java b/system/general/src/test/java/org/wamblee/system/adapters/ConstructorConfigurationTest.java index 0cec6fba..fe0ece62 100644 --- a/system/general/src/test/java/org/wamblee/system/adapters/ConstructorConfigurationTest.java +++ b/system/general/src/test/java/org/wamblee/system/adapters/ConstructorConfigurationTest.java @@ -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());