DEV Community

Discussion on: How I learned to love unit testing

Collapse
 
kell18 profile image
Albert Bikeev

Integration tests are always better than unit tests. It cover much larger code-base chunk (except corner cases, where is to hard to reproduce some logic) and yes, they're more expensive, but it's in our duty to make it cheaper with modern instruments like Testcontainers and similar.

So I think only viable case for unit-tests is corner cases.

blog.usejournal.com/lean-testing-o...