views:

25

answers:

1

Is it possible to use cactus and Junit 4 at the same time? Because I know that current cactus release is based on Junit 3.8. Cactus looks like hasn't been maintained for a long time,doesn't even support annotation, is there any better framework to replace cactus?

A: 

Wikipedia has a link to a workaround. Note that a JUnit 4 suite can run JUnit 3.8 tests. This means you can keep your Cactus tests as JUnit 3.8 and your other tests as JUnit 4.

Jeanne Boyarsky