codewario
codewario

Reputation: 21448

Is junit-addons compatible with Junit4.x?

According to the SourceForge project page, junit-addons is compatible with Junit 3.7 and 3.8. Does anyone know if this will work with Junit4.x? If not, are there any alternative libraries with HTML reporting functions*?

*I am trying to avoid using Ant for this, as my client wishes against using Ant.

Upvotes: 3

Views: 1296

Answers (1)

Matthew Farwell
Matthew Farwell

Reputation: 61705

I don't think junit-addons is compatible with junit 4, it certainly doesn't look it from the sourceforge page you displayed.

I would recommend using ant or maven. If invoking the command line version of ant is a problem, you could always look at embedding it. See the answers to Run ant from Java for a good starting point.

Upvotes: 2

Related Questions