Here you can find the source of assertNotTrue(boolean conditionThatMustNotBeTrue, String msgWhenTrue)
private static void assertNotTrue(boolean conditionThatMustNotBeTrue, String msgWhenTrue)
//package com.java2s; //License from project: Apache License public class Main { private static void assertNotTrue(boolean conditionThatMustNotBeTrue, String msgWhenTrue) { if (conditionThatMustNotBeTrue) { throw new IllegalArgumentException(msgWhenTrue); }//from www. ja v a 2s. co m } }