资 源 简 介
A collection of standard Eclipse LTK based refactoring to improve bad Java code. This project aims at including useful refactorings to improve testability of monolithic legacy Java code.
1. Static Call forwarding
This refactoring forwards all static calls from a method by extracting a method in same class to make the originating method unit testable without external dependencies. See self-explanatory screenshot below.
Method test is now testable after refactoring.