views:

9

answers:

0

I know it is best practice to run all unit testcases after any change to make sure not breaking anything. However, some times, e.g. debugging, I really want to run only one single test case. It seems XCode doesn't provide such feature in UI, while other testing framework such as JUnit has such features.

Is there any workaround to have only one testcase run in XCode?

P.S. most of my test cases are logic tests. So, they are not run in iPhone device.