889 B
889 B
title | date | permalink | tags | cta | snippet | ||||
---|---|---|---|---|---|---|---|---|---|
Test, then refactor | 2024-10-20 | daily/2024/10/20/test-then-refactor |
|
~ | Do you make sure you have automated tests before you refactor? |
Whether you prefer PHPUnit or Pest PHP, or if you're coding in a different language, it's important to have automated tests - especially before you refactor any code.
Before you refactor, you want to have passing tests that you're confident cover all the required functionality.
When you finish refactoring, the tests should still pass.
Then you know the functionality is the same and the code still works after it's been refactored.
If you don't have tests, how do you know everything still works, or how likely are you to do the refactor at all?