Here you can find the source of assertTrue(boolean expValue, String errMsg)
public static void assertTrue(boolean expValue, String errMsg)
//package com.java2s; public class Main { public static void assertTrue(boolean expValue, String errMsg) { if (!expValue) { throw new RuntimeException(errMsg); }/*from w w w .j a v a2 s. com*/ } }