In the past I would make a test suite per package, that would hold all of the tests in that package.
then I would roll up all of the package test suites into a master test suite, which would hold all of the package test suites.
Anyone know of a better idea?
In the past I would make a test suite per package, that would hold
Share
Your approach is a good starting point, your Test-suits are structured in the way of your code definition. You could also add additional test-suits to cover special functional behavior.
For Example if you need for your
addXXX()Method a Controller/Model/Display(MVC-Pattern) out of different packages you should combine youraddXXX(),removeXXX(),updateXXX()to a Test-suite likemodifyXXX(). So you don’t have all Classes of the packages tested, but only the Methods for one pack of funcionality.