IDEA 打开Edit configuration settings
点击Modify options
加入-ea
测试代码
import org.junit.Test;
public class TestAssert {
@Test
public void test() {
boolean isOpen = false;
// 如果开启了断言,会将isOpen的值改为true
assert isOpen = true;
// 打印是否开启了断言,如果为false,则没有启用断言
System.out.println(isOpen);
}
}