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.
Another sum-up: Yes, Option Strict On is definitely best practice. In fact, I've worked for years in online communities like this one. Whenever someone needed help on code that obviously didn't have Option Strict enabled, we'd politely point this out and refuse to give any further help until this was fixed. It saves so much time. Often, the problem was gone after this. This is somewhat analogous to using correct HTML when asking help in a HTML support forum: invalid HTML might work, but then again, it might not and be the cause of the problems. Therefore, many professionals refuse to help.
