Java Assert True assertTrue(boolean condition, String message)

Here you can find the source of assertTrue(boolean condition, String message)

Description

Solleva una @link(IllegalArgumentException) con message message in caso di condition false

License

Open Source License

Parameter

Parameter Description
object a parameter
message a parameter

Declaration

public static void assertTrue(boolean condition, String message) 

Method Source Code

//package com.java2s;
/**//from w  ww  .j  ava2 s .  c om
 *   27/giu/2011
 *
 * Copyright (c) 2010 Alten Italia, All Rights Reserved.
 *
 * This software is the confidential and proprietary information of
 * Alten Italia ("Confidential Information").
 * You shall not disclose such Confidential Information and shall use it
 * only in accordance with the terms of the license agreement you entered 
 * into with Alten Italia.
 *
 * Alten Italia - MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY 
 * OF THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO 
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, 
 * OR NON-INFRINGEMENT. ALTEN ITALIA SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED
 * BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR 
 * ITS DERIVATIVES.
 */

public class Main {
    /**
     * Solleva una @link(IllegalArgumentException) con message message in caso di condition false
     * 
     * @param object
     * @param message
     */
    public static void assertTrue(boolean condition, String message) {
        if (!condition) {
            throw new IllegalArgumentException(message);
        }
    }
}

Related

  1. assertTrue(boolean b, String msgTemplate, Object... params)
  2. assertTrue(boolean condition)
  3. assertTrue(boolean condition)
  4. assertTrue(boolean condition, String argName, String message)
  5. assertTrue(boolean condition, String message)
  6. assertTrue(boolean condition, String msg)
  7. assertTrue(boolean evalResult, Object... messages)
  8. assertTrue(boolean express)
  9. assertTrue(boolean expression)