In Eclipse it is possible to configure certain “favorite” classes which will be looked up when code completetion is invoked to see if a static import can be added for a method (this is under Preferences > Java > Editor > Content Assist > Favorites).
For example, I can begin to type assertT, and Eclipse will ask if I want to add a static import of org.junit.Assert.assertTrue;.

Is it possible to do the same thing in IntelliJ?
The method detailed in this question will add a * import for the type (static import org.junit.Assert.*), but I do not want to add star-imports. I’d prefer to import just the methods I am using.
I think you can:-
File -> Settings -> Code Style -> Java -> Imports. Then, add your import statements under Packages to Use Import with ‘*’ table.