New instance provider for Spring. It is available in the EasyCoverage4J-spring module.
Refactored API for checkers. ClassChecker and MethodChecker both declare shouldCheck as final. The abstract methods shouldCheckClass and shouldCheckMethod, respectively, have been introduced.
Methods setClasses, setClassCheckers, and setMethodCheckers on CheckersRunner and JUnitTestSuiteProvider are now deprecated in favor of a new interface.
0.2.2
Fixed a bug when using ClassScanner on Windows
Minor fixes and improvements
0.2.1
New checker: SynchronizedChecker. It checks that methods inside a class with the @Synchronized annotation is synchronized. Annotations @NotSynchronized is used to specify that a method does not need to be synchronized, whereas @SynchronizedBlock specifies that the synchronization has been handled with a synchronized block.
Improved DefaultInstanceProvider and NPEConstructorChecker so that parameters are created using the provider (Adriano Machado)
0.2.0
Complete refactoring with (among other things) the addition of instance providers and new checkers