How and when to use UNIT testing properly
- by Zebs
I am an iOS developer.
I have read about unit testing and how it is used to test specific pieces of your code.
A very quick example has to do with processing JSON data onto a database.
The unit test reads a file from the project bundle and executes the method that is in charge of processing JSON data.
But I dont get how this is different from…