Uses of Class
org.fest.assertions.data.Index
-
Packages that use Index Package Description org.fest.assertions.api org.fest.assertions.core org.fest.assertions.data org.fest.assertions.error org.fest.assertions.internal -
-
Uses of Index in org.fest.assertions.api
Methods in org.fest.assertions.api that return Index Modifier and Type Method Description static IndexAssertions. atIndex(int index)Only delegate toatIndex(int)so that Assertions offers a full feature entry point to all Fest Assert features (but you can useIndexif you prefer).Methods in org.fest.assertions.api with parameters of type Index Modifier and Type Method Description BooleanArrayAssertBooleanArrayAssert. contains(boolean value, Index index)Verifies that the actual array contains the given value at the given index.ByteArrayAssertByteArrayAssert. contains(byte value, Index index)Verifies that the actual array contains the given value at the given index.CharArrayAssertCharArrayAssert. contains(char value, Index index)Verifies that the actual array contains the given value at the given index.DoubleArrayAssertDoubleArrayAssert. contains(double value, Index index)Verifies that the actual array contains the given value at the given index.FloatArrayAssertFloatArrayAssert. contains(float value, Index index)Verifies that the actual array contains the given value at the given index.IntArrayAssertIntArrayAssert. contains(int value, Index index)Verifies that the actual array contains the given value at the given index.ListAssert<T>ListAssert. contains(T value, Index index)Verifies that the actual group contains the given object at the given index.LongArrayAssertLongArrayAssert. contains(long value, Index index)Verifies that the actual array contains the given value at the given index.ObjectArrayAssert<T>ObjectArrayAssert. contains(T value, Index index)Verifies that the actual group contains the given object at the given index.ShortArrayAssertShortArrayAssert. contains(short value, Index index)Verifies that the actual array contains the given value at the given index.BooleanArrayAssertBooleanArrayAssert. doesNotContain(boolean value, Index index)Verifies that the actual array does not contain the given value at the given index.ByteArrayAssertByteArrayAssert. doesNotContain(byte value, Index index)Verifies that the actual array does not contain the given value at the given index.CharArrayAssertCharArrayAssert. doesNotContain(char value, Index index)Verifies that the actual array does not contain the given value at the given index.DoubleArrayAssertDoubleArrayAssert. doesNotContain(double value, Index index)Verifies that the actual array does not contain the given value at the given index.FloatArrayAssertFloatArrayAssert. doesNotContain(float value, Index index)Verifies that the actual array does not contain the given value at the given index.IntArrayAssertIntArrayAssert. doesNotContain(int value, Index index)Verifies that the actual array does not contain the given value at the given index.ListAssert<T>ListAssert. doesNotContain(T value, Index index)Verifies that the actual group does not contain the given object at the given index.LongArrayAssertLongArrayAssert. doesNotContain(long value, Index index)Verifies that the actual array does not contain the given value at the given index.ObjectArrayAssert<T>ObjectArrayAssert. doesNotContain(T value, Index index)Verifies that the actual group does not contain the given object at the given index.ShortArrayAssertShortArrayAssert. doesNotContain(short value, Index index)Verifies that the actual array does not contain the given value at the given index.ListAssert<T>ListAssert. has(Condition<? super T> condition, Index index)Verifies that the actual object at the given index in the actual group satisfies the given condition.ListAssert<T>ListAssert. is(Condition<? super T> condition, Index index)Verifies that the actual object at the given index in the actual group satisfies the given condition. -
Uses of Index in org.fest.assertions.core
Methods in org.fest.assertions.core with parameters of type Index Modifier and Type Method Description SIndexedObjectEnumerableAssert. contains(T value, Index index)Verifies that the actual group contains the given object at the given index.SIndexedObjectEnumerableAssert. doesNotContain(T value, Index index)Verifies that the actual group does not contain the given object at the given index. -
Uses of Index in org.fest.assertions.data
Methods in org.fest.assertions.data that return Index Modifier and Type Method Description static IndexIndex. atIndex(int value)Creates a newIndex. -
Uses of Index in org.fest.assertions.error
Methods in org.fest.assertions.error with parameters of type Index Modifier and Type Method Description static <T> ErrorMessageFactoryShouldBeAtIndex. shouldBeAtIndex(java.util.List<T> actual, Condition<? super T> condition, Index index, T found)Creates a newShouldBeAtIndex.static ErrorMessageFactoryShouldContainAtIndex. shouldContainAtIndex(java.lang.Object actual, java.lang.Object expected, Index index, java.lang.Object found)Creates a newShouldContainAtIndex.static ErrorMessageFactoryShouldContainAtIndex. shouldContainAtIndex(java.lang.Object actual, java.lang.Object expected, Index index, java.lang.Object found, ComparisonStrategy comparisonStrategy)Creates a newShouldContainAtIndex.static <T> ErrorMessageFactoryShouldHaveAtIndex. shouldHaveAtIndex(java.util.List<T> actual, Condition<? super T> condition, Index index, T found)Creates a newShouldHaveAtIndex.static ErrorMessageFactoryShouldNotContainAtIndex. shouldNotContainAtIndex(java.lang.Object actual, java.lang.Object expected, Index index)Creates a newShouldNotContainAtIndex.static ErrorMessageFactoryShouldNotContainAtIndex. shouldNotContainAtIndex(java.lang.Object actual, java.lang.Object expected, Index index, ComparisonStrategy comparisonStrategy)Creates a newShouldNotContainAtIndex. -
Uses of Index in org.fest.assertions.internal
Methods in org.fest.assertions.internal with parameters of type Index Modifier and Type Method Description voidBooleanArrays. assertContains(AssertionInfo info, boolean[] actual, boolean value, Index index)Verifies that the given array contains the given value at the given index.voidByteArrays. assertContains(AssertionInfo info, byte[] actual, byte value, Index index)Verifies that the given array contains the given value at the given index.voidCharArrays. assertContains(AssertionInfo info, char[] actual, char value, Index index)Verifies that the given array contains the given value at the given index.voidDoubleArrays. assertContains(AssertionInfo info, double[] actual, double value, Index index)Verifies that the given array contains the given value at the given index.voidFloatArrays. assertContains(AssertionInfo info, float[] actual, float value, Index index)Verifies that the given array contains the given value at the given index.voidIntArrays. assertContains(AssertionInfo info, int[] actual, int value, Index index)Verifies that the given array contains the given value at the given index.voidLists. assertContains(AssertionInfo info, java.util.List<?> actual, java.lang.Object value, Index index)Verifies that the givenListcontains the given object at the given index.voidLongArrays. assertContains(AssertionInfo info, long[] actual, long value, Index index)Verifies that the given array contains the given value at the given index.voidObjectArrays. assertContains(AssertionInfo info, java.lang.Object[] actual, java.lang.Object value, Index index)Verifies that the given array contains the given object at the given index.voidShortArrays. assertContains(AssertionInfo info, short[] actual, short value, Index index)Verifies that the given array contains the given value at the given index.voidBooleanArrays. assertDoesNotContain(AssertionInfo info, boolean[] actual, boolean value, Index index)Verifies that the given array does not contain the given value at the given index.voidByteArrays. assertDoesNotContain(AssertionInfo info, byte[] actual, byte value, Index index)Verifies that the given array does not contain the given value at the given index.voidCharArrays. assertDoesNotContain(AssertionInfo info, char[] actual, char value, Index index)Verifies that the given array does not contain the given value at the given index.voidDoubleArrays. assertDoesNotContain(AssertionInfo info, double[] actual, double value, Index index)Verifies that the given array does not contain the given value at the given index.voidFloatArrays. assertDoesNotContain(AssertionInfo info, float[] actual, float value, Index index)Verifies that the given array does not contain the given value at the given index.voidIntArrays. assertDoesNotContain(AssertionInfo info, int[] actual, int value, Index index)Verifies that the given array does not contain the given value at the given index.voidLists. assertDoesNotContain(AssertionInfo info, java.util.List<?> actual, java.lang.Object value, Index index)Verifies that the givenListdoes not contain the given object at the given index.voidLongArrays. assertDoesNotContain(AssertionInfo info, long[] actual, long value, Index index)Verifies that the given array does not contain the given value at the given index.voidObjectArrays. assertDoesNotContain(AssertionInfo info, java.lang.Object[] actual, java.lang.Object value, Index index)Verifies that the given array does not contain the given object at the given index.voidShortArrays. assertDoesNotContain(AssertionInfo info, short[] actual, short value, Index index)Verifies that the given array does not contain the given value at the given index.<T> voidLists. assertHas(AssertionInfo info, java.util.List<T> actual, Condition<? super T> condition, Index index)Verifies that the givenListsatisfies the givenat the given index.Condition<T> voidLists. assertIs(AssertionInfo info, java.util.List<T> actual, Condition<? super T> condition, Index index)Verifies that the givenListsatisfies the givenat the given index.Condition
-