|
|
|
|
|
by troupo
872 days ago
|
|
> spend time writing up lots of tests for things that get covered “automatically” in statically typed languages This is mostly down to poor testing culture in general. People end up writing a lot of meaningless unit tests when what you need is integration tests. However, there's very little tooling to help with integration tests (in all languages) as everything is focused on unit testing only. With proper integration tests you will cover much of what the compiler gives you in statically-typed languages. |
|