Skip to content

Instantly share code, notes, and snippets.

@tvandervossen
Created April 13, 2011 20:13
Show Gist options
  • Select an option

  • Save tvandervossen/918305 to your computer and use it in GitHub Desktop.

Select an option

Save tvandervossen/918305 to your computer and use it in GitHub Desktop.
A small part from a code review report for an iOS app
Testing
Automated testing (even though still not widely used by Objective-C developers) would make
refactoring much easier, faster and safer. Good test coverage would also allow maintenance
to be done and new features to be added without first having to fully investigate the
function of all parts of the codebase and the way these parts fit together. This especially
applies when work is contracted out to developers other than those who originally created
the application.
The lack of a comprehensive automated test suite is a real disadvantage. Adding one is
highly recommended, preferably as both unit and functional tests, but at the very least as
unit tests for the models.
@tvandervossen

Copy link
Copy Markdown
Author

Feel free to steal and modify this text.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment