Equivalent of NCrunch for Java in Eclipse
Asked Answered
D

1

15

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.

Desantis answered 11/9, 2012 at 12:27 Comment(2)
here's another one: code.google.com/p/t2frameworkXanthic
t2framework now leads to git.science.uu.nl/prase101/t3/wikis/home when I followed the links/redirects.Cephalothorax
J
14

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

Jadda answered 11/9, 2012 at 18:40 Comment(2)
Indeed it has less features than nCrunch but it definitely works well! I'm still doing tests with it, thanks for your input.Desantis
The URL is now infinitest.github.ioBasis

© 2022 - 2024 — McMap. All rights reserved.