Esiste un modo per convincere Eclipse a cercare automaticamente le importazioni statiche? Ad esempio, ora che ho finalmente eseguito l'aggiornamento a Junit 4, vorrei poter scrivere:
assertEquals(expectedValue, actualValue);
premi Ctrl+ Shift+ Oe fai aggiungere Eclipse:
import static org.junit.Assert.assertEquals;
Forse sto chiedendo troppo.
org.junit.Assert
viaNew Type...
,.*
è quindi implicito.