Unit test without leaving Xcode

Is it possible to run unit tests without automatically switching to a simulator? This gets pretty annoying, especially if you're in full screen mode and you end up throwing the “whole desktop” away from the console.

+4
source share
1 answer

Here is a small AppleScript that I installed to run to display the results in a test configuration:

#!/usr/bin/osascript activate application "Xcode" 

It returns Xcode immediately after pressing the + U command. I also opened the error, and Apple marked it as a duplicate. So they know.

+2
source

All Articles