Sometimes the play button disappears in Xcode when I want to make a Unit Test (XCTest). For instance there should be a play button to the left of testNSStringUtilities below but there is none. What can I do to get the play button to appear. It seems that sometimes cutting the method and pasting it again helps to get the play button back.
No play button in Unit Test in Xcode
2.7k Views Asked by Bob Ueland At
3
There are 3 best solutions below
0

XCode 14+
- place your cursor into Test Case you want to run
- press
⌃ ⌥ ⌘ U (control + option + command + U)
after: Corresponding Test Case is running ✅
0

I think it's an Xcode bug, and it happens to me occasionally.
If those buttons are still not shown after you tried @Gerd's solution (like my case, Xcode 14.2), find the "Test Navigator" at Xcode's left sidebar, and click the run button of the expected test case to test.
Screenshot below:
And btw, you can use combo CtrOptCmd+g to run the same test case again.
Usually the play buttons appear once you have run your unit tests completely (using Cmd U for example).
There are some more obscure cases, but usually this is all you have to do.