From: erik Date: Mon, 12 May 2008 11:21:43 +0000 (+0000) Subject: Added ObjectConfiguration as a holder for setter configuration (there will be more... X-Git-Tag: wamblee-utils-0.2@603~153 X-Git-Url: http://wamblee.org/gitweb/?a=commitdiff_plain;h=e6932d85492a43ea6c7cb2deced2723cbfcfa1b3;p=utils Added ObjectConfiguration as a holder for setter configuration (there will be more configuration for objects in the future that is unrelated to setters). Also added addComponent methods for objects to defaultcontainer. --- diff --git a/trunk/support/general/src/test/java/org/wamblee/test/AssertionUtils.java b/trunk/support/general/src/test/java/org/wamblee/test/AssertionUtils.java index 82462041..86585f29 100644 --- a/trunk/support/general/src/test/java/org/wamblee/test/AssertionUtils.java +++ b/trunk/support/general/src/test/java/org/wamblee/test/AssertionUtils.java @@ -64,7 +64,9 @@ public final class AssertionUtils { */ public static void assertEquals(String aMsg, T[] aExpected, T[] aActual) { - TestCase.assertEquals(aMsg + ": Array lengths ", aExpected.length, + TestCase.assertEquals(aMsg + " expected " + + Arrays.asList(aExpected) + ", actual " + + Arrays.asList(aActual) + ": Array lengths ", aExpected.length, aActual.length); for (int i = 0; i < aExpected.length; i++) {