X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=system%2Fgeneral%2Fsrc%2Ftest%2Fjava%2Forg%2Fwamblee%2Fsystem%2Fcore%2FAbstractComponentTest.java;h=2fd48f6e4c08de37cb13d62aab3ddcb632db3f6c;hb=32a8562695029cf13d915bc7941a61fe07ff0005;hp=3b1b7d375fc601dfbd647d2df2f5c509ef826fc6;hpb=49e4054c52db618894cf85eab721aebcbb9c3bc1;p=utils diff --git a/system/general/src/test/java/org/wamblee/system/core/AbstractComponentTest.java b/system/general/src/test/java/org/wamblee/system/core/AbstractComponentTest.java index 3b1b7d37..2fd48f6e 100644 --- a/system/general/src/test/java/org/wamblee/system/core/AbstractComponentTest.java +++ b/system/general/src/test/java/org/wamblee/system/core/AbstractComponentTest.java @@ -21,7 +21,7 @@ public class AbstractComponentTest extends TestCase { public void testNotAllInterfacesStarted() { try { - Component component = new AbstractComponent("xx", + Component component = new AbstractComponent("xx", new ProvidedInterface[] { new DefaultProvidedInterface( "xxx", String.class) }, new RequiredInterface[0]) { @Override @@ -35,7 +35,7 @@ public class AbstractComponentTest extends TestCase { // Empty. } }; - component.start(new DefaultScope(component.getProvidedInterfaces().toArray())); + component.start(new DefaultScope(component.getProvidedInterfaces())); } catch (SystemAssemblyException e) { //e.printStackTrace(); return; @@ -45,7 +45,7 @@ public class AbstractComponentTest extends TestCase { public void testUnexpectedServicesStarted() { try { - Component component = new AbstractComponent("xx", + Component component = new AbstractComponent("xx", new ProvidedInterface[0], new RequiredInterface[0]) { @Override protected Object doStart(Scope aScope) { @@ -58,7 +58,7 @@ public class AbstractComponentTest extends TestCase { // Empty. } }; - component.start(new DefaultScope(component.getProvidedInterfaces().toArray())); + component.start(new DefaultScope(component.getProvidedInterfaces())); } catch (SystemAssemblyException e) { //e.printStackTrace(); return;