Feb 04
Kent Beck has released JUnitMax.
“JUnit Max is an Eclipse plug-in that helps programmers stay focused on coding by running tests intelligently and reporting results unobtrusively. Every time you save a Java file, Max will run your tests and report errors like compile errors. In addition, Max runs the tests most likely to fail first, so you only have to pay close attention to test results for a second (literally) before getting back to coding, even if you have a long-running test suite.”
Running tests in the background is nothing new. A continuous testing plugin for Eclipse has existed for a while. What is new here is the logic deciding in which order the tests should run. But I am not sure people are willing to pay $2/month for it. There are too many free tools out there… I will be waiting for the NetBeans plugin before i give it a try anyway…
Tweet This Post
Dec 15
PowerMock 1.1 is now available. The major new stuff in this release is decoupling PowerMock from EasyMock, which makes it possible to use PowerMock with other test frameworks. In this release, support for Mockito has been added (Thanks for the hint, Jan…). Looking forward to trying it!
Tweet This Post
Mar 23
Agitar has launched a plug-in to Eclipse for test generation. The way it works is that your code is sent to their server where tests are generated and returned to you. The tests are generated by the same technology that is used in AgitarOne. Since it is experimental, it can even contain features that are not available in the commercial Agitar products yet.
I have just tested JUnit Factory on simple classes but it seems excellent! The test code looks fine, all your tests are listed with status information. You even get a coverage report and coverage markers in your code.
The only catch I have found so far is that you have to be online to be able to generate new tests. I found that out when I tried to test the plug-in while I was working offline on the train yesterday…
More information and request for download can be found on http://www.junitfactory.com/
Tweet This Post
Jan 18
Writing tests for existing code is time consuming and boring for the developers and thus often neglected. Agitar recently launched a new tool called AgitarOne. This tool generates JUnit tests for your existing legacy application to make sure you do not break anything when you start adding functionality or refactoring the code base. Hopefully it will not be priced to high…
More information about AgitarOne can be found here.
Tweet This Post