Uses of Class
org.fest.assertions.data.Index

Packages that use Index
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
static Index Assertions.atIndex(int index)
          Only delegate to atIndex(int) so that Assertions offers a full feature entry point to all Fest Assert features (but you can use Index if you prefer).
 

Methods in org.fest.assertions.api with parameters of type Index
 BooleanArrayAssert BooleanArrayAssert.contains(boolean value, Index index)
          Verifies that the actual array contains the given value at the given index.
 ByteArrayAssert ByteArrayAssert.contains(byte value, Index index)
          Verifies that the actual array contains the given value at the given index.
 CharArrayAssert CharArrayAssert.contains(char value, Index index)
          Verifies that the actual array contains the given value at the given index.
 DoubleArrayAssert DoubleArrayAssert.contains(double value, Index index)
          Verifies that the actual array contains the given value at the given index.
 FloatArrayAssert FloatArrayAssert.contains(float value, Index index)
          Verifies that the actual array contains the given value at the given index.
 IntArrayAssert IntArrayAssert.contains(int value, Index index)
          Verifies that the actual array contains the given value at the given index.
 LongArrayAssert LongArrayAssert.contains(long value, Index index)
          Verifies that the actual array contains the given value at the given index.
 ObjectArrayAssert ObjectArrayAssert.contains(Object value, Index index)
          Verifies that the actual group contains the given object at the given index.
 ListAssert ListAssert.contains(Object value, Index index)
          Verifies that the actual group contains the given object at the given index.
 ShortArrayAssert ShortArrayAssert.contains(short value, Index index)
          Verifies that the actual array contains the given value at the given index.
 BooleanArrayAssert BooleanArrayAssert.doesNotContain(boolean value, Index index)
          Verifies that the actual array does not contain the given value at the given index.
 ByteArrayAssert ByteArrayAssert.doesNotContain(byte value, Index index)
          Verifies that the actual array does not contain the given value at the given index.
 CharArrayAssert CharArrayAssert.doesNotContain(char value, Index index)
          Verifies that the actual array does not contain the given value at the given index.
 DoubleArrayAssert DoubleArrayAssert.doesNotContain(double value, Index index)
          Verifies that the actual array does not contain the given value at the given index.
 FloatArrayAssert FloatArrayAssert.doesNotContain(float value, Index index)
          Verifies that the actual array does not contain the given value at the given index.
 IntArrayAssert IntArrayAssert.doesNotContain(int value, Index index)
          Verifies that the actual array does not contain the given value at the given index.
 LongArrayAssert LongArrayAssert.doesNotContain(long value, Index index)
          Verifies that the actual array does not contain the given value at the given index.
 ObjectArrayAssert ObjectArrayAssert.doesNotContain(Object value, Index index)
          Verifies that the actual group does not contain the given object at the given index.
 ListAssert ListAssert.doesNotContain(Object value, Index index)
          Verifies that the actual group does not contain the given object at the given index.
 ShortArrayAssert ShortArrayAssert.doesNotContain(short value, Index index)
          Verifies that the actual array does not contain the given value at the given index.
 

Uses of Index in org.fest.assertions.core
 

Methods in org.fest.assertions.core with parameters of type Index
 IndexedObjectEnumerableAssert IndexedObjectEnumerableAssert.contains(Object value, Index index)
          Verifies that the actual group contains the given object at the given index.
 IndexedObjectEnumerableAssert IndexedObjectEnumerableAssert.doesNotContain(Object 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
static Index Index.atIndex(int index)
          Creates a new Index.
 

Uses of Index in org.fest.assertions.error
 

Methods in org.fest.assertions.error with parameters of type Index
static ErrorMessageFactory ShouldContainAtIndex.shouldContainAtIndex(Object actual, Object expected, Index index, Object found)
          Creates a new ShouldContainAtIndex.
static ErrorMessageFactory ShouldContainAtIndex.shouldContainAtIndex(Object actual, Object expected, Index index, Object found, org.fest.util.ComparisonStrategy comparisonStrategy)
          Creates a new ShouldContainAtIndex.
static ErrorMessageFactory ShouldNotContainAtIndex.shouldNotContainAtIndex(Object actual, Object expected, Index index)
          Creates a new ShouldNotContainAtIndex.
static ErrorMessageFactory ShouldNotContainAtIndex.shouldNotContainAtIndex(Object actual, Object expected, Index index, org.fest.util.ComparisonStrategy comparisonStrategy)
          Creates a new ShouldNotContainAtIndex.
 

Uses of Index in org.fest.assertions.internal
 

Methods in org.fest.assertions.internal with parameters of type Index
 void BooleanArrays.assertContains(AssertionInfo info, boolean[] actual, boolean value, Index index)
          Verifies that the given array contains the given value at the given index.
 void ByteArrays.assertContains(AssertionInfo info, byte[] actual, byte value, Index index)
          Verifies that the given array contains the given value at the given index.
 void CharArrays.assertContains(AssertionInfo info, char[] actual, char value, Index index)
          Verifies that the given array contains the given value at the given index.
 void DoubleArrays.assertContains(AssertionInfo info, double[] actual, double value, Index index)
          Verifies that the given array contains the given value at the given index.
 void FloatArrays.assertContains(AssertionInfo info, float[] actual, float value, Index index)
          Verifies that the given array contains the given value at the given index.
 void IntArrays.assertContains(AssertionInfo info, int[] actual, int value, Index index)
          Verifies that the given array contains the given value at the given index.
 void Lists.assertContains(AssertionInfo info, List<?> actual, Object value, Index index)
          Verifies that the given List contains the given object at the given index.
 void LongArrays.assertContains(AssertionInfo info, long[] actual, long value, Index index)
          Verifies that the given array contains the given value at the given index.
 void ObjectArrays.assertContains(AssertionInfo info, Object[] actual, Object value, Index index)
          Verifies that the given array contains the given object at the given index.
 void ShortArrays.assertContains(AssertionInfo info, short[] actual, short value, Index index)
          Verifies that the given array contains the given value at the given index.
 void BooleanArrays.assertDoesNotContain(AssertionInfo info, boolean[] actual, boolean value, Index index)
          Verifies that the given array does not contain the given value at the given index.
 void ByteArrays.assertDoesNotContain(AssertionInfo info, byte[] actual, byte value, Index index)
          Verifies that the given array does not contain the given value at the given index.
 void CharArrays.assertDoesNotContain(AssertionInfo info, char[] actual, char value, Index index)
          Verifies that the given array does not contain the given value at the given index.
 void DoubleArrays.assertDoesNotContain(AssertionInfo info, double[] actual, double value, Index index)
          Verifies that the given array does not contain the given value at the given index.
 void FloatArrays.assertDoesNotContain(AssertionInfo info, float[] actual, float value, Index index)
          Verifies that the given array does not contain the given value at the given index.
 void IntArrays.assertDoesNotContain(AssertionInfo info, int[] actual, int value, Index index)
          Verifies that the given array does not contain the given value at the given index.
 void Lists.assertDoesNotContain(AssertionInfo info, List<?> actual, Object value, Index index)
          Verifies that the given List does not contain the given object at the given index.
 void LongArrays.assertDoesNotContain(AssertionInfo info, long[] actual, long value, Index index)
          Verifies that the given array does not contain the given value at the given index.
 void ObjectArrays.assertDoesNotContain(AssertionInfo info, Object[] actual, Object value, Index index)
          Verifies that the given array does not contain the given object at the given index.
 void ShortArrays.assertDoesNotContain(AssertionInfo info, short[] actual, short value, Index index)
          Verifies that the given array does not contain the given value at the given index.
 



Copyright © 2007-2012 FEST (Fixtures for Easy Software Testing). All Rights Reserved.