15

我正在寻找一种在 Eclipse 中为 Java 编写代码(例如 Visual Studio 的 NCrunch)时进行持续测试的工具。有没有类似的东西是免费的?

理想情况下,它会持续测试,但也会实时给我反馈哪些线路通过,哪些线路不通过。

4

1 回答 1

13

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

于 2012-09-11T18:40:20.713 回答