running tests on xcode 4.3

ios, xcode

Solution

I solved this by clicking on the "Run" checkbox in the Edit Scheme dialog. On the left there's a list of tabs. Choose "Build". Then there's a list of actions ("Analyze", "Test", "Run", "Profile", etc) on the right-hand side. Make sure "Run" is checked.

Then press "OK" and then Clean and Build your project.

Problem

I'm using Xcode 4.3 and i'm not getting how to run the tests, or at least, how the see the test results, failed or passed. I've a project with two targets, `foo` and `fooTests`. The tests are the default implementation; a simple tearDown and setup function and a testExample method with a `STFail(@"not implemented")` where i'm supposed to see this message? on the scheme dropdown, there seems to be only `foo`. What i need to do to run the fooTests target and see output?

Original source