One of the things that makes TDD enjoyable is the ability to generate code after you write the test. This is done with the Quick Fix option in Eclipse (Cmd-F1) - or with a similar option using Alt-Enter in Jetbrains tools. Most uses include only four options:
- Create new class
- Create a new method
- Create a new property
- Create a new instance variable
Is there a way to add this ability to Xcode using a plugin, Automator, or something else? I feel that with four of them in place, I could go back to using Xcode instead of getting stuck in Appcode.
source share