Created
April 13, 2011 20:13
-
-
Save tvandervossen/918305 to your computer and use it in GitHub Desktop.
A small part from a code review report for an iOS app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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. |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Feel free to steal and modify this text.