Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Equivalent of NCrunch for Java in Eclipse

I'm looking for a tool that does continuous testing while I'm writing code (such as NCrunch for Visual Studio) for Java in Eclipse. Is there something like that available for free?

Ideally, it would test continuously, but also give me a feedback in real time of which lines pass and which don't.

like image 206
Pacane Avatar asked Sep 11 '12 12:09

Pacane


1 Answers

I don't know NCrunch. But Infinitest is a nice continuous test runner for Eclipse (probably with less features than NCrunch). It runs unit tests affected by changed code on every save action and displays the results in the status bar.

However, it only works for "plain" JUnit tests, not for plugin based JUnit tests (i.e. you cannot use it when developing Eclipse plugins yourself).

like image 164
Bananeweizen Avatar answered Sep 30 '22 18:09

Bananeweizen