Organizing source code files by type vs intent
All of us have certainly seen source code files being organized by types. There’s a group named View Controllers, a group named Models, a group named View...
All of us have certainly seen source code files being organized by types. There’s a group named View Controllers, a group named Models, a group named View...
As I added new scenes and wrote new unit tests for Clean Swift Xcode templates v2, creating test data manually becomes very tedious. There’s got to be a better ...
This is a preview of one of the new features in the upcoming version 2 of my Clean Swift Xcode templates. The VIP cycle isolates your code dependency, while the...
In my last post, you learned how to test your presenter and format data properly for display. We also introduced a new displayFetchedOrders() method in the view...
In this post, you’ll complete the VIP cycle by testing the presenter for the fetch orders use case. You can read about my previous posts on testing the view con...