|
|
|
|
|
by et1337
176 days ago
|
|
They mean the dependencies. If you’re testing system A whose sole purpose is to call functions in systems B and C, one approach is to replace B and C with mocks. The test simply checks that A calls the right functions. The pain comes when system B changes. Oftentimes you can’t even make a benign change (like renaming a function) without updating a million tests. |
|