General statistics
List of Youtube channels
Youtube commenter search
Distinguished comments
About
Benjamin Rood
ByteByteGo
comments
Comments by "Benjamin Rood" (@benisrood) on "The Most Beloved Burger for Developers" video.
Happy path is the absolute minimum. Ensuring functioning invariants which prevent the bad path should also be the minimum, imo.
1
@brucewayne2480 No, it just means that you can skip the kind of type and input sanitisation testing that you might write for a dynamically typed language. If you think that is all testing is used for then you are either writing very trivial programs or have a lot to learn still.
1
@antonioamaral400 It depends on the type of tests. Unit tests are relatively static if you are writing properly-defined single-responsibility functions with clean inputs and outputs without side effects. In fact you can most likely generate the test code in those cases. Integration and E2E tests fit closer to what you are saying.
1