WOUnitTest 2 is the subset or essence of WOUnitTest 1 that my teams have used on several projects over the last four years. Updating those projects to WOUnitTest 2 was therefore easy and straightforward. The specific differences to the previous version are:
- based on Java 1.5 instead of 1.4
- based on JUnit 4 instead of 3
- installs as a jar instead of a framework
- doesn't include a testrunner anymore (Java IDEs all come with a testrunner and ant comes with a junit task, also the idea of running tests in production never turned out to be a useful one)
- simpler: 3 (+1) classes instead of 15 (+1)
- package org.wounittest instead of com.codefab.wounittest
- no more support for testing components (which was a bad idea)
- no more support for testing against a database (which is too difficult to setup and too slow to run)
|