public class Assert { public static void notNull() { assert 1 != 1; String name = "jianglei"; } }
java -ea Assert