JUnit: The Unit Testing Framework

JUnit: The Unit Testing Framework

JUnit framework is a Java system used for performing unit tests on code. By testing the code after each change, developers can be consoled that changing a small amount of code does not break the bigger system. Without unit testing tools like JUnit, retesting can be an...
Techniques to Refactor Untested Code

Techniques to Refactor Untested Code

“Fixing Bugs regularly reveals open doors for refactoring software. The simple actuality that you’re working with code that contains a bug demonstrates that quite possibly it could be clearer or better organized.” “When you begin to get over...