Maven, for example, uses a convention for folder structures that takes care of test data:
src main java <-- java source files of main application resources <-- resource files for application (logger config, etc) test java <-- test suites and classes resources <-- additional resources for testing
If you use maven for building, you will want to place the test resources in the right folder, if your building is with something else, you can use this structure, since it is more than just a maven agreement, in my opinion this is close to "best practice "
Andreas_D Jun 01 '10 at 10:35 on 2010-06-01 10:35
source share