Is it possible to get rid of from import statements in JUnit tests written in Groovy? I know you could do it in groovy scripts in GroovyShell by changing compiler configuration or import customizer.
I like to do same thing but:
- IntelliJ should still provide code highlight and auto complete (I think I could do this with gdsl file feature of IntelliJ)
- I could still use IntelliJ's JUnit window to see which tests failed and which are passed.