Reputation: 3315
I am new to unit testing and I want to write some tests to existing iOS app. The key feature of the app I want to test is uploading/downloading of the file to amazon S3 storage.
What I want to know is:
Thank you.
Upvotes: 1
Views: 721
Reputation: 54603
What you are describing here are integration tests. And the frameworks that comes with the SDK aren't made for unit tests. So that's why they don't include async, networking, etc.
Upvotes: 2