[Clirr-devel] CVS: clirr/core/src/test/net/sf/clirr/core/internal/checks AbstractCheckerTestCase.j
Status: Alpha
Brought to you by:
lkuehne
From: Lars Küh. <lk...@us...> - 2009-05-29 20:06:36
|
Update of /cvsroot/clirr/clirr/core/src/test/net/sf/clirr/core/internal/checks In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv2150/core/src/test/net/sf/clirr/core/internal/checks Modified Files: AbstractCheckerTestCase.java Log Message: added support for using class directories instead of jars in TypeArrayBuilder, request from Jochen Wiedmann (clirr-maven-plugin team) in private mail Index: AbstractCheckerTestCase.java =================================================================== RCS file: /cvsroot/clirr/clirr/core/src/test/net/sf/clirr/core/internal/checks/AbstractCheckerTestCase.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- AbstractCheckerTestCase.java 24 Mar 2009 21:23:49 -0000 1.5 +++ AbstractCheckerTestCase.java 29 May 2009 20:06:24 -0000 1.6 @@ -38,7 +38,7 @@ } /** - * Returns the baseline jar files to test against (the old version). + * Returns the baseline classpath entry files to test against (the old version). */ protected File[] getBaseLine() { @@ -48,12 +48,12 @@ } /** - * Returns the current set of jar files (the new version). + * Returns the current set of classpath entry files (the new version). */ protected File[] getCurrent() { return new File[]{ - new File(getTestInputDir(), "testlib-v2.jar") + new File(getTestInputDir(), "testinput/testlib-v2") }; } |