From: Erik Brakkee 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.7~756 X-Git-Url: http://wamblee.org/gitweb/?a=commitdiff_plain;h=370665c0e3ee47aa84858ced493cd8b2dbb2811e;hp=0ef16bd1ab00860f90da1198589b3c777561691d;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/support/general/src/test/java/org/wamblee/test/AssertionUtils.java b/support/general/src/test/java/org/wamblee/test/AssertionUtils.java index 82462041..86585f29 100644 --- a/support/general/src/test/java/org/wamblee/test/AssertionUtils.java +++ b/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++) {