Reputation: 933
Adding tests to a test unit in xcode doesn't show them up on the tests inspector (left hand side bar).
Does anyone know why this is happening? I have followed the instructions of tutorials to a T.
Upvotes: 2
Views: 663
Reputation: 3940
The test method names need to begin with the word 'test'.
i.e. apiWillLoginWithKnownEmailAndPassword
should be testApiWillLoginWithKnownEmailAndPassword
Upvotes: 6