I just changed my Netbeans design form to intelliJ IDEA, my junit based test project. In netbeans I used entries
assertTrue("Message", conditionCustom());
and he worked without additional import. Now when using the same command in intelliJ I need to import the file
import static org.junit.Assert.assertTrue;
Is there a way, so I don't need to write the above line in my code file? otherwise, I have to edit all my files to get the assertTrue instruction.
source
share