I cannot test this right now as I don't have an Eclipse 3.4 installation handy, but I've run across a similar problem a while ago in (I think) IntelliJ IDEA 7.0.x, and a workaround was to explicitly specify a test runner.
With JUnit 4.5:
import com.springsource.org.junit.runners.JUnit4org.junit.runners.JUnit4;
@RunWith(JUnit4.class)
public class ActivatorTest {
//...
}
If this does not work you may have more success with com.springsource.org.junit.runners.BlockJUnit4ClassRunnerorg.junit.runners.BlockJUnit4ClassRunner
For JUnit 4.4 I would try com.springsource.org.junit.internal.runners.JUnit4ClassRunnerorg.junit.internal.runners.JUnit4ClassRunner
EDIT : not too sure about the com.springsource. part as I don't use Springsource. From your question it seems that springsource repackages JUnit under com.springsource.org.junit but you use just org.junit in your code so I'll stick with that.
