Java Assert assertNotTrue(boolean value, String message)

Here you can find the source of assertNotTrue(boolean value, String message)

Description

Throws exception if value is true.

License

Apache License

Parameter

Parameter Description
value values which would be checked
message message which would be added to exception

Declaration

public static void assertNotTrue(boolean value, String message) 

Method Source Code

//package com.java2s;
/*//from   w  ww  .  jav a  2s . c om
 * Copyright 2013 Zakhar Prykhoda
 *
 *    midao.org
 *
 *    Licensed under the Apache License, Version 2.0 (the "License");
 *    you may not use this file except in compliance with the License.
 *    You may obtain a copy of the License at
 *
 *        http://www.apache.org/licenses/LICENSE-2.0
 *
 *    Unless required by applicable law or agreed to in writing, software
 *    distributed under the License is distributed on an "AS IS" BASIS,
 *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *    See the License for the specific language governing permissions and
 *    limitations under the License.
 */

public class Main {
    /**
     * Throws exception if value is true.
     *
     * @param value   values which would be checked
     * @param message message which would be added to exception
     */
    public static void assertNotTrue(boolean value, String message) {
        if (value == true) {
            throw new IllegalArgumentException(message);
        }
    }
}

Related

  1. assertNotEmpty(String value, String message)
  2. assertNotEmptyString(final String s)
  3. assertNotEquals(final Object actual, final Object expected, final String name)
  4. assertNotMatches(String name, String regExp, String actual)
  5. assertNotTrue(boolean conditionThatMustNotBeTrue, String msgWhenTrue)
  6. assertObjectEmpty(Object value)
  7. assertObjEquals(Object expected, Object actual)
  8. assertOffsetLengthValid(int offset, int length, int arrayLength)
  9. assertOid(final String s)