From: SourceForge.net <no...@so...> - 2006-05-02 16:17:20
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3710634 By: tmacc The structure looks good. I think we should further define the src dir to separate production code from test code. A typical structure is: src |--> java (productiion code) |--> test (unit tests) From there we can have a parallel package structure so test classes actually live in the same java package as production classes. This way the tests have access to non-private members of the classes they are testing. But the source files are physically separated. This makes the build (ant/maven) a bit easier. ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=545812 |