|
|
|
|
|
by SideburnsOfDoom
972 days ago
|
|
Yep. The issue with tests that are heavy on interfaces and mocks is that they are "too close" to the code - if refactoring is changing code while tests stay green, how can you refactor when any change to any method breaks a test? Swapping out interfaces to code-gened interceptors and keeping everything else the same, doesn't look like it would improve this underlying issue at all. |
|
You fix until tests pass. How do you know you adjusted all tests when code changes and tests stay green?