Here you can find the source of assertFact(boolean truth, String failure)
static void assertFact(boolean truth, String failure)
//package com.java2s; public class Main { static void assertFact(boolean truth, String failure) { if (!truth) { System.err.println("assertion failed: " + failure); System.exit(1);/*www . ja v a2 s .c om*/ } } }