Use of Unit Test in Xcode 5

前端 未结 1 1018
南笙
南笙 2021-02-05 06:29

I am writing my first bigger iOS project and I want to use as much of Xcode 5 as possible. Now I want to use testing but I have never done it before.

My project uses com

相关标签:
1条回答
  • 2021-02-05 06:47

    Please start by watching WWDC '13 session 409 - Testing in Xcode 5. It's a very good starting point.

    Next, if you're not feeling confident of your approach to unit testing, I'd recommend reading "Test-Driven iOS Development" by Graham Lee.

    For now, remember that a unit test tests single "unit" of functionality and does not cover performance, UI interaction and whole system integration.

    0 讨论(0)
提交回复
热议问题