Introduction to Unit Testing in Kotlin
We'll cover the following...
Code always does what we type and not what we meant, and that’s true in statically typed languages as much as in dynamically typed languages. The Kotlin compiler’s rigorous verification will substantially reduce errors that may occur in code. But, as the application evolves, it’s our responsibility to verify that code continues to work as intended. ...