Java Assert assertGreater(long first, long second)

Here you can find the source of assertGreater(long first, long second)

Description

Assert that the first argument is greater than the second

License

Apache License

Parameter

Parameter Description
first the first value
second the second value

Declaration

public static void assertGreater(long first, long second) 

Method Source Code

//package com.java2s;
/*/*  w ww  . j  av a 2 s . c om*/
 * Copyright (c) Patrick Huber (gmail: stackmagic)
 *
 * 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 {
    /**
     * Assert that the first argument is greater than the second
     * @param first the first value
     * @param second the second value
     */
    public static void assertGreater(long first, long second) {
        if (first <= second) {
            throw new AssertionError(String.format("expected <%d> to be greater than <%d>", first, second));
        }
    }
}

Related

  1. assertFails(Class expectedThrowable, String pattern, int... values)
  2. assertFalse(boolean test, String message)
  3. assertFalse(final boolean result, final String message)
  4. assertFalse(String string, boolean b)
  5. assertFieldPositive(int fieldValue, String fieldName)
  6. assertGreaterOrEqualsThan(final long value, final long limit, final String name)
  7. assertGreaterThanOrEquals(String name, double comparedTo, double number)
  8. assertHasInterface(Class interfaceClass, Class objectClass)
  9. assertHasLength(String... params)