Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there anyway to get Eclipse to automatically look for static imports? For example, now that I've finally upgraded to Junit 4, I'd like to be able to write:

assertEquals(expectedValue, actualValue);

hit Ctrl + Shift + O and have Eclipse add:

import static org.junit.Assert.assertEquals;

Maybe I'm asking too much.

share|improve this question

6 Answers

up vote 180 down vote accepted

I'm using Eclipse Europa, which also has the Favorite preference section:
Window » Preferences » Java » Editor » Content Assist » Favorites
In mine, I have the following entries (when adding, use "New Type" and ommit the .*):

org.hamcrest.Matchers.*
org.hamcrest.CoreMatchers.*
org.junit.*
org.junit.Assert.*
org.junit.Assume.*
org.junit.matchers.JUnitMatchers.*

All but the third of those are static imports. By having those as favorites, if I type "assertT" and hit Ctrl-Space, Eclipse offers up assertThat as a suggestion, and if I pick it, it will add the proper static import to the file.

share|improve this answer
2  
+1 what a handy thing :-) – Grundlefleck Nov 27 '09 at 23:27
Yeah awesome, but, Dude, you only have the matchers for hamcrest. That doesn't bring in AssertThat.. ? – Rob Apr 18 '12 at 21:05
assertThat is on Assert – plasma147 Jun 23 '12 at 8:53
+1 too. Good answer – Sri Harsha Chilakapati Aug 4 '12 at 1:41
10  
Ah - the trick is to simply add org.junit.Assert via New Type..., the .* is then implicit. – KomodoDave Aug 30 '12 at 13:01
show 4 more comments

If you highlight the method Assert.assertEquals(val1, val2) and hit Ctrl + Shift + M (Add Import), it will add it as a static import, at least in Eclipse 3.4.

share|improve this answer
4  
cmd-shift-M on the mac – Joshua Goldberg Oct 27 '11 at 14:58
In Eclipse Juno I've only managed to make it work if I highlight only the method and afterwards use the CTRL + SHIFT + M. – ktulinho Apr 25 at 11:43

Eclipse 3.4 has a Favourites section under Window->Preferences->Java->Editor->Content Assist

If you use org.junit.Assert a lot, you might find some value to adding it there.

share|improve this answer
+1 for providing path to preferences screen. – Grundlefleck Nov 27 '09 at 22:39

Not exactly what I wanted, but I found a workaround. In Eclipse 3.4 (Ganymede), go to Window->Preferences->Java->Editor->Content Assist and check the checkbox for "Use static imports (only 1.5 or higher)".

This will not bring in the import on an Optimize Imports, but if you do a Quick Fix (crtl-1) on the line it will give you the option to add the static import which is good enough.

share|improve this answer

With http://www.3pintech.com/products/fast-code/ plugin you could static import a class. Then all the static member will come as code assist. You might want to take a look at that.

share|improve this answer

With Fast code plugin, you can create a JUnit test case. This will also automatically static import the required classes.

share|improve this answer

protected by Will Sep 22 '10 at 13:20

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.