All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fitbur.assertj.internal.RealNumbers Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
/**
 * 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.
 *
 * Copyright 2012-2016 the original author or authors.
 */
package com.fitbur.assertj.internal;

import com.fitbur.assertj.api.AssertionInfo;
import com.fitbur.assertj.data.Offset;

/**
 * Base class of reusable assertions for real numbers (float and double).
 * 
 * @author Joel Costigliola
 */
public abstract class RealNumbers> extends Numbers {

  public RealNumbers() {
    super();
  }

  public RealNumbers(ComparisonStrategy comparisonStrategy) {
    super(comparisonStrategy);
  }

  /**
   * Verifies that the actual value is equal to {@code NaN}.
* It does not rely on the custom comparisonStrategy (if one is set). * * @param info contains information about the assertion. * @param actual the actual value. * @throws AssertionError if the actual value is not equal to {@code NaN}. */ public void assertIsNaN(AssertionInfo info, NUMBER actual) { assertEqualByComparison(info, actual, NaN()); } protected abstract NUMBER NaN(); /** * Verifies that two real numbers are equal within a positive offset.
* It does not rely on the custom comparisonStrategy (if one is set) because using an offset is already a specific * comparison * strategy. * * @param info contains information about the assertion. * @param actual the actual value. * @param expected the expected value. * @param offset the given positive offset. * @throws NullPointerException if the given offset is {@code null}. * @throws AssertionError if the actual value is {@code null}. * @throws AssertionError if the actual value is not equal to the expected one. */ public void assertEqual(AssertionInfo info, NUMBER actual, NUMBER expected, Offset offset) { assertIsCloseTo(info, actual, expected, offset); } /** * Verifies that the actual value is not equal to {@code NaN}. * @param info contains information about the assertion. * @param actual the actual value. * @throws AssertionError if the actual value is equal to {@code NaN}. */ public void assertIsNotNaN(AssertionInfo info, NUMBER actual) { assertNotEqualByComparison(info, actual, NaN()); } @Override protected boolean isGreaterThan(NUMBER value, NUMBER other) { return value.compareTo(other) > 0; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy