Java Assert assertCond(boolean b)

Here you can find the source of assertCond(boolean b)

Description

assert Cond

License

Open Source License

Declaration

public static void assertCond(boolean b) 

Method Source Code

//package com.java2s;
/*******************************************************************************
 * The MIT License//from w w w  .ja va  2s .c  o  m
 *
 * Copyright (c) 2008 Adam Kiezun
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 ******************************************************************************/

public class Main {
    public static void assertCond(boolean b) {
        if (!b)
            throw new RuntimeException("Assertion violation.");
    }

    public static void assertCond(boolean b, String message) {
        if (!b)
            throw new RuntimeException("Assertion violation: " + message);
    }
}

Related

  1. assertClassDoesNotExist(String className)
  2. assertClassExists(String className)
  3. assertColor(int color)
  4. assertComparison(T actual, T expected)
  5. assertComparison(T actual, T expected)
  6. assertCondition(boolean condition, String message)
  7. assertCondition(boolean condition, String msg)
  8. assertContains(final String string, final String content)
  9. assertContains(String needle, String haystack)