Is there a keyboard shortcut in Xcode 6 to run a single current test function under cursor?
Is there a keyboard shortcut in Xcode 6 to run the current test case under cursor? I know I can press Command + u to run all tests. Also, I can tap the test icon located to the left of the test function or tap the icon in 'Test Navigator'. Is there a keyboard shortcut to run only the single test function under cursor?
Run the current test:
Control + Option + Command + U
Re-Run the last test:
Control + Option + Command + G
control-option-command G
will let you rerun your last test. So if you run a single test the first time and then keep running it (a common workflow for TDD), that might save you some time ;)