Unit Testing Beginners Guide - Part 3 - Mock Http And Files access
We've all encountered at some point code that needs to do some API calls or read from the file system. It's a super bad idea to actually let the code make the real http requests or read from the file system during unit test. Let's see why and how we can get around these kind of issues.…
More