My maven project includes
186 <dependency>
187 <groupId>org.hamcrest</groupId>
188 <artifactId>hamcrest-all</artifactId>
189 <version>1.3</version>
190 </dependency>
When i type assertThat
..
I'd like for IDEA to figure out that the following is needed
import static org.hamcrest.MatcherAssert.assertThat;
Instead i get this.
How can this corrected? How can i get IDEA to perform a static import?