Is there an AJAX web-based Junit TestRunner?
What I'm looking for is a TestRunner implementation for running a suite of Java JUnit tests within a browser. The intention is that non-developers can execute the tests by visiting a browser page. Test results should be dynamically updated to the browser page with something like AJAX after each test and/or suite has completed.
I've seen a few attempts at this, but the ones I'm aware of execute all of the tests before showing any results to the browser. Take mistletoe for example.
Ideally, the implement开发者_运维百科ation would be inspired by the JUnit testrunners found in IDEs such as IntelliJ IDEA or Eclipse. Is anyone aware of such a TestRunner?
I was looking for the same thing, and I've just come across ktrwjr, which I'm just about to use to integrate into my web app to run my JUnit integration tests.
Edit: I've just realised this is for testing apps developed on GAE/j. So close...
Answers to this Question Might Help: JavaScript unit test tools for TDD
精彩评论