The easiest method I know of is just linking in the tests that you want. It is what I have used in the past when fixing unit tests (prior to getting the debugger to work I used NSLog calls and just looked at the output - my programming start predates symbolic debuggers and if you go old school you can still find bugs and fix things).
I have named all my tests files so that they end in _test and then the file suffix. This means that I can:
- Select all my test files in the search widget in XCode by typing _test.cpp and then in the main area choose the tests that I do not want
- Click on the Info button in the tool bar to get info on all of the tests
- Select the Targets pain in the info window and turn off the tests that I don't want to run.