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.

有帮助吗?

解决方案

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).

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top