`Option Strict` obviously can't replace good unit testing – but neither the other way round. While unit testing *can* detect the same errors as `Option Strict`, this implies that there's no error in the unit tests, that unit testing is done often and early, etc …. Writing good unit tests isn't always trivial and takes time. However, the compiler already implements some of the tests – in the form of type checking. At the very least, this saves time. More likely, this saves *a lot of* time and money (at least occasionally) because your tests were erroneous / didn't cover all cases / forgot to account for changes in the code. To sum it up, there's no guarantee that your unit tests are correct. On the other hand, there's a strong guarantee that the type checking performed by the compiler is correct or at least that its glitches (unchecked array covariance, bugs with circular references …) are well-known and well-documented.