Package org.assertj.core.error
Class ShouldHaveAtIndex
- java.lang.Object
-
- org.assertj.core.error.BasicErrorMessageFactory
-
- org.assertj.core.error.ShouldHaveAtIndex
-
- All Implemented Interfaces:
ErrorMessageFactory
public class ShouldHaveAtIndex 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 afailed.Condition- Author:
- Bo Gotthardt
-
-
Field Summary
-
Fields inherited from class org.assertj.core.error.BasicErrorMessageFactory
arguments, format, formatter
-
-
Constructor Summary
Constructors Modifier Constructor Description privateShouldHaveAtIndex(List<? extends T> actual, Condition<? super T> condition, Index index, T found)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <T> ErrorMessageFactoryshouldHaveAtIndex(List<? extends T> actual, Condition<? super T> condition, Index index, T found)Creates a new.ShouldHaveAtIndex-
Methods inherited from class org.assertj.core.error.BasicErrorMessageFactory
create, create, create, equals, hashCode, toString, unquotedString
-
-
-
-
Method Detail
-
shouldHaveAtIndex
public static <T> ErrorMessageFactory shouldHaveAtIndex(List<? extends T> actual, Condition<? super T> condition, Index index, T found)
Creates a new.ShouldHaveAtIndex- Type Parameters:
T- guarantees that the type of the actual value and the generic type of theConditionare the same.- Parameters:
actual- the actual value in the failed assertion.condition- theCondition.index- the index of the expected value.found- the value inactualstored underindex.- Returns:
- the created
ErrorMessageFactory.
-
-