开发者

What is the best approach for writing unit tests for iPhone / iPad?

开发者 https://www.devze.com 2022-12-27 12:25 出处:网络
I am developing an iPad application.I\'m not sur开发者_StackOverflowe if I should write unit tests for this application, and if so, how I should go about writing them.

I am developing an iPad application. I'm not sur开发者_StackOverflowe if I should write unit tests for this application, and if so, how I should go about writing them.

What would you suggest as the best approach to writing unit tests for iPhone / iPad?


Ok, there are two questions being raised here:

  1. Is unit testing worth it?

Answer: Definitely. I cannot count the times it has saved me hours of pain and suffering.

  1. What's the best way to unit test in the iPhone/iPad environment?

Answer: for myself I skipped sen and moved onto GHUnit and OCMock. GHUnit allows in simulator testing and debugging where as sen doesn't. This alone makes it a better proposition for iPhone/iPad development.


You will write the test once, but run it many times as your application evolves.

If the tests pass, you know you didn't break anything. If the tests fail, you know where to fix. If the tests pass and the application fails, you know you need more tests.

  • In the long run writing the test will SAVE time.
  • In the short run you can validate you know what your individual routines do, and thus gain confidence in the correctness of your code, by writing the tests.

Regardless what OS/platform your application targets, regardless of what size it has today ..

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号