Tools from the toolbox
My friend, and colleague Mark talked about the advantages of being able to do the work we’re doing quickly when we’re driving in a pair programming session. I find it extremely vital to know the environment you’re working in and be able to move around really quickly and be productive. Ctrl-C, Ctrl-V and switching between the keyboard and mouse are things of the past. The future of speed is in the keyboard.
This is why my latest favorite eclipse plugin is moreUnit. It allows you to jump between the test class and the class under test in a keystroke or two. That means you don’t have to move your hand away from the keyboard to the mouse to find the class that you want. And you don’t even have to do any of the following:
1. Ctrl-F6 or Ctrl-E to list the classes that are open, and then going through the list to find the one that you want.
2. Ctrl-Shift-T and typing in the name of the class
moreUnit also does some other nifty things for you. When you rename classes, it will rename the corresponding test classes as well. When you move classes, moreUnit will also move the test classes. If you have multiple test classes i.e. PersonTest, PersonIntegrationTest, PersonSystemTest, you can configure moreUnit to tie all of them to Person.
moreUnit claims that it should assist you in writing more tests. I think it’s just an awesome plugin that helps you navigate your way around better and faster.



Are you familiar with the key promoter plug-in for eclipse? Assuming it works like the IntelliJ version, it will hound you when you do things with the mouse and let you know what keys combos you could have been pressing instead.
steve
November 4, 2008 at 5:37 am
haha, I should have followed the link first, my bad. I’m so far behind on the blogs.
steve
November 4, 2008 at 5:39 am
It’s called mousefeed for Eclipse
http://www.mousefeed.com/home
dlbock
November 11, 2008 at 10:29 pm
For me, working in Eclipse without moreUnit is like trying to type with one hand.
Ikenna Nwaiwu
December 2, 2008 at 5:05 pm