My question is 2-fold. 1. Can I use OCUnit to test View Controllers. If so, how should I do it? If not, is there another Testing Kit I can use?
|
|
|
|
|
|
|
You definitely can. Say you had a UITableViewController, and you wanted to make sure that it had 2 sections with 5 rows each; that is easily done in a test method like so:
I would also recommend also utilizing OCMock to help you with testing your controllers. you can easily mock a view and ensure that your controller is interacting with it properly. |
||
|
|
