Class ShouldBeGreaterOrEqual

  • All Implemented Interfaces:
    ErrorMessageFactory

    public class ShouldBeGreaterOrEqual
    extends BasicErrorMessageFactory
    Creates an error message indicating that an assertion that verifies that a value is greater than or equal to another one failed.
    Author:
    Alex Ruiz, Joel Costigliola
    • Method Detail

      • shouldBeGreaterOrEqual

        public static <T extends Comparable<T>> ErrorMessageFactory shouldBeGreaterOrEqual​(T actual,
                                                                                           T other)
        Creates a new ShouldBeGreaterOrEqual.
        Type Parameters:
        T - guarantees that the values used in this factory have the same type.
        Parameters:
        actual - the actual value in the failed assertion.
        other - the value used in the failed assertion to compare the actual value to.
        Returns:
        the created ErrorMessageFactory.
      • shouldBeGreaterOrEqual

        public static <T extends Comparable<? super T>> ErrorMessageFactory shouldBeGreaterOrEqual​(T actual,
                                                                                                   T other,
                                                                                                   ComparisonStrategy comparisonStrategy)
        Creates a new ShouldBeGreaterOrEqual.
        Type Parameters:
        T - guarantees that the values used in this factory have the same type.
        Parameters:
        actual - the actual value in the failed assertion.
        other - the value used in the failed assertion to compare the actual value to.
        comparisonStrategy - the ComparisonStrategy used to evaluate assertion.
        Returns:
        the created ErrorMessageFactory.