Cover of Refactoring by Martin Fowler, Kent Beck - Business and Economics Book

From "Refactoring"

Author: Martin Fowler, Kent Beck
Publisher: Addison-Wesley Professional
Year: 1999
Category: Computers

🎧 Free Preview Complete

You've listened to your free 10-minute preview.
Sign up free to continue listening to the full summary.

🎧 Listen to Summary

Free 10-min Preview
0:00
Speed:
10:00 free remaining
Chapter 1: Refactoring: A First Example
Key Insight 2 from this chapter

The Foundational Role of Testing in Refactoring

Key Insight

Before commencing any refactoring, establishing a robust suite of tests is the absolute first step and is non-negotiable. These tests are essential because, despite following structured refactoring techniques designed to minimize errors, human mistakes are inevitable. For larger programs, the likelihood of inadvertently breaking something during modifications increases significantly, highlighting the critical need for a safety net.

Effective tests must be self-checking, meaning they automatically report success or failure without requiring manual verification. For instance, in the example of a statement-generating function, tests involve creating multiple invoices, running them through the code, and comparing the generated output strings against hand-checked reference strings. These comparisons should be automated using a testing framework, allowing tests to run quickly—within seconds—and be executed frequently.

The rapid feedback loop provided by self-checking tests (e.g., 'green' for success, 'red' for failure) is vital. It eliminates time-consuming manual checks and allows developers to run tests after every small refactoring step. This approach ensures that if a mistake is made, the error is isolated to a very small recent change, making it much easier and faster to locate and fix, thereby significantly reducing debugging time and leading to overall time savings with considerable interest.

📚 Continue Your Learning Journey — No Payment Required

Access the complete Refactoring summary with audio narration, key takeaways, and actionable insights from Martin Fowler, Kent Beck.