Hi,
I'm trying to run a test on a project with several submodules in it.
One of our projects has an xml file which is included in a different project
with the one testing it.
dao
|
src/test/resources | --> test-dao.xml
service
|
src/test/resources | --> test-service.xml
When i run tests in the service layer, it can't seem to find the
test-dao.xml which i have a dependency on. I'm using testng to run this.
One of the work aroudn would be to include i in src/main/resourcew which i
don't want to do...
how do i handle this?
thanks
carlo