The hierarchy for unit tests generally mimic the package structure for the source code that is being tested, i.e a test suite for each package and a test class for each class.
Since functional testing is quite a bit different than unit testing do you have any suggestions for setting up the test hierchary? Should I follow a similar structure as Junit?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
In regards to hierarchy of tests for JFunc...
The hierarchy for unit tests generally mimic the package structure for the source code that is being tested, i.e a test suite for each package and a test class for each class.
Since functional testing is quite a bit different than unit testing do you have any suggestions for setting up the test hierchary? Should I follow a similar structure as Junit?
I had the same question. I don't think it really matters..