标签: eclipse import
在Eclipse中编写junit测试代码时,它非常烦人
junit
Assert.assertEquals(expected, actual);
自动导入
import junit.framework.Assert;
但我想要的是org.junit.Assert。所以我必须删除此导入,然后键入commnad+shift+o,打开此窗口
org.junit.Assert
commnad+shift+o
然后手动选择org.junit.Assert。 我怎样才能更改订单,org.junit.Assert是默认的?