IDEA 打开Edit configuration settings

开启断言assert_前端

点击Modify options

开启断言assert_前端_02

加入-ea

开启断言assert_ide_03

开启断言assert_css3_04

测试代码

import org.junit.Test;

public class TestAssert {
@Test
public void test() {
boolean isOpen = false;

// 如果开启了断言,会将isOpen的值改为true
assert isOpen = true;

// 打印是否开启了断言,如果为false,则没有启用断言
System.out.println(isOpen);
}
}