Here you can find the source of assertFalse(String string, boolean b)
public static void assertFalse(String string, boolean b)
//package com.java2s; //License from project: Apache License public class Main { public static void assertFalse(String string, boolean b) { if (b)//from w ww. j av a2 s.c om throw new IllegalStateException(string); } }