1

Everywhere there are pretty pictures of failing tests shown inline in the code editor, like in Peepcodes Objective-C for Rubyist screencast and in apples own technical documentation:

Test result shown inline
(source: apple.com)

When I build my test-target, all I get is a little red icon down in the right corner, stating something went wrong. When clicking on it, I get the Build Results, where I can start to hunt for test results.

Do anyone have a clue on what´s wrong?

Cœur
  • 37,241
  • 25
  • 195
  • 267
Vegar
  • 12,828
  • 16
  • 85
  • 151

3 Answers3

1

Have a look at your Xcode preferences. Under the Building tab you want to change your settings for Message Bubbles.

This works for Xcode 3.1 which it looks like the image you've shown. Xcode 3.2 has a different style of bubble and doesn't have this preference.

Abizern
  • 146,289
  • 39
  • 203
  • 257
  • I have Xcode 3.2.1. The screenshot is taken from apples site. Does that mean there is no inline results for me? – Vegar Nov 19 '09 at 20:36
1

Press "Cmd =" to travel between build results, you should see a warning.

Also, that specific warning seems like it's from the static analyzer - you turn that on by going to project preferences and checkmarking "run static analyzer" or by using the "Build and Analyze" option.

Kendall Helmstetter Gelner
  • 74,769
  • 26
  • 128
  • 150
0

Try Cmd-Shift-H to show all message bubbles.