Jun 15, 2026, 8:19 AM

This commit is contained in:
Paweł Domański
2026-06-15 06:19:10 +00:00
parent 78f95bc1c7
commit 9ff5514c1c
56 changed files with 3809 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
# Refactor Candidates
After TDD cycle, look for:
- **Duplication** → Extract function/class
- **Long methods** → Break into private helpers (keep tests on public interface)
- **Shallow modules** → Combine or deepen
- **Feature envy** → Move logic to where data lives
- **Primitive obsession** → Introduce value objects
- **Existing code** the new code reveals as problematic