Here you can find the source of assertTrue(String message, boolean condition)
Parameter | Description |
---|---|
message | the identifying message for the AssertionError ( <code>null</code> okay) |
condition | condition to be checked |
public static void assertTrue(String message, boolean condition)
//package com.java2s; //License from project: Apache License public class Main { /**/*from w w w . j a va2s . c o m*/ * Asserts that a condition is true. If it isn't it throws an * {@link AssertionError} with the given message. * * @param message * the identifying message for the {@link AssertionError} ( * <code>null</code> okay) * @param condition * condition to be checked */ public static void assertTrue(String message, boolean condition) { if (!condition) fail(message); } /** * Fails a test with the given message. * * @param message * the identifying message for the {@link AssertionError} ( * <code>null</code> okay) * @see AssertionError */ public static void fail(String message) { throw new IllegalStateException(message == null ? "" : message); } }