|
|
|
|
|
by koolba
510 days ago
|
|
That’s exactly what those tests are for. When you no longer have to worry if you invoked .foo() or .fooTypo(), you eliminated one class of bug. Namely trying to run things that do not exist. Maybe you meant to invoke .bar(), but at least we know thanks to type checks that the target exists. |
|