Search code examples
javaeclipsejunitautomated-testscontinuous-testing

Is it possible to run incremental/automated JUnit testing in Eclipse?


Eclipse support incremental compiling. If I save a source file then it will compile the modified files.

Is it possible after such incremental compile also to run the JUnit tests of the same package and show the fail in the error view. Then I can see the JUnit test failing and compiling errors in the same view without extra action. Are there any plugins that can do it?


Solution

  • You have to look at these plugins:

    • JUnit Max: Not free, developed by Kent Benk (one of the men behind the TDD practice);
    • MoreUnit: Free, but essentially dedicated to help you write the tests;
    • Infinitest: Now free, this plugin is dedicated to run the tests related to the files you have just modified.

    So regarding your needs, I suggest that you install MoreUnit and Infinitest plugins.