1.0.2: JCoverage doesn't use unit test resources?

2005-12-14 Thread jason r tibbetts
Is there any way to tell JCoverage to use the unit test resources? JCoverage worked fine until I added some tests which rely on properties files. Because these files are neither copied over to JCoverage's instrumented classes dir nor picked up in its classpath, these tests now fail. I tri

Re: unit test resources

2003-07-17 Thread Mark McBride
Maybe try something like this: src/test **/*Test.java **/*.dat -Mark At 01:36 PM 7/17/2003 +0100, you wrote: Hi, I've written a number of unit tests for a project and some of these tests require data files (*.dat) in

unit test resources

2003-07-17 Thread Ciaran Treanor
Hi, I've written a number of unit tests for a project and some of these tests require data files (*.dat) in order to run. I'm having trouble getting Maven to put these .dat files into target/test-classes/com/foo/bar as part of the build process. Thus the tests are failing when I run: maven jar Can