Class ShouldBeAtIndex

  • All Implemented Interfaces:
    ErrorMessageFactory

    public class ShouldBeAtIndex
    extends BasicErrorMessageFactory
    Creates an error message indicating that an assertion that verifies a group of elements contains a value at a given index that satisfies a Condition failed.
    Author:
    Bo Gotthardt
    • Constructor Detail

      • ShouldBeAtIndex

        private ShouldBeAtIndex​(List<? extends T> actual,
                                Condition<? super T> condition,
                                Index index,
                                T found)
    • Method Detail

      • shouldBeAtIndex

        public static <T> ErrorMessageFactory shouldBeAtIndex​(List<? extends T> actual,
                                                              Condition<? super T> condition,
                                                              Index index,
                                                              T found)
        Creates a new ShouldBeAtIndex.
        Type Parameters:
        T - guarantees that the type of the actual value and the generic type of the Condition are the same.
        Parameters:
        actual - the actual value in the failed assertion.
        condition - the Condition.
        index - the index of the expected value.
        found - the value in actual stored under index.
        Returns:
        the created ErrorMessageFactory.