My common shortcuts on IntellJ for TDD
Hi everyone! On previous post I wrote about What we need to write fast using TDD . This post is about one section of it. Shortcuts on my IDE. Currently I use IntellJ and I show you the shortcuts which I use for improving my work. List of shortcuts Ctrl + Shift + T - Go to Test/Go to Test Subject - I use it for quick switch between test and production code. Using it, I don't need use mouse to click a package and I don't lose my time for finding a class. In test class Alt + Insert and next Enter - Create test method - a faster way to write a method of test. Ctrl + E - List of recent files. I use it for quick switch between used files. I try not to use a mouse when I write the code. Double shift - next shortcut to switch between all classes. In test class Ctrl + Shift + F10 - running test In tested class Shift + F10 - run previous action - my previous action is almost always test for current written code. F2 - go to next warning or error - this is the best way to g...