Class ShouldBeEqualWithinPercentage

java.lang.Object
org.assertj.core.error.BasicErrorMessageFactory
org.assertj.core.error.ShouldBeEqualWithinPercentage
All Implemented Interfaces:
ErrorMessageFactory

public class ShouldBeEqualWithinPercentage extends BasicErrorMessageFactory
Creates an error message indicating that an assertion that verifies that two numbers are equal within a positive percentage failed.
Author:
Alexander Bischof
  • Method Details

    • shouldBeEqualWithinPercentage

      public static <T extends Number> ErrorMessageFactory shouldBeEqualWithinPercentage(T actual, T expected, Percentage percentage, T difference)
      Type Parameters:
      T - the type of values to compare.
      Parameters:
      actual - the actual value in the failed assertion.
      expected - the expected value in the failed assertion.
      percentage - the given positive percentage.
      difference - the effective difference between actual and expected.
      Returns:
      the created ErrorMessageFactory.