vote up 0 vote down star

Uri's answer got me thinking about what limitations JUnit 4 aquired by using annotations instead of a specific class hierarchy and interfaces the way JUnit 3 and earlier did. I'm wondering what limitations Annotations gave other people in using JUnit 4?

One for me was the difficulty in creating a suite of dynamically generated classes. I had to work around the fact that Suite.SuiteClasses is an annotation with the following runner:

 public class IDEATester extends Suite {

     public IDEATester(Class<?> setupClass) throws InitializationError {
         super(setupClass, staticMethodToGetArrayOfTestClasses());
     }
 }

On the advantage side of annotations, @BeforeClass is miles ahead of the Test Fixture approach of JUnit 3.

flag
One addition thing to ask here is do other largely annotation based unit test frameworks suffer from the same problem? Take your Suite example, how hard is it under TestNG? – mlk Nov 5 at 10:08
As far as I know, with TestNG you have to generate an XML file to make a suite. Much harder than the above fix, although much more obvious in the framework. – Yishai Nov 5 at 14:21

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.