Modifier and Type | Method and Description |
---|---|
static IntArrayAssert |
Assertions.assertThat(int[] actual)
Creates a new instance of
. |
IntArrayAssert |
IntArrayAssert.contains(int... values)
Verifies that the actual
int array contains the given values. |
IntArrayAssert |
IntArrayAssert.containsOnly(int... values)
Verifies that the actual
int array contains the given values only. |
IntArrayAssert |
IntArrayAssert.excludes(int... values)
Verifies that the actual
int array does not contain the given values. |
IntArrayAssert |
IntArrayAssert.isEqualTo(int[] expected)
Verifies that the actual
int array is equal to the given array. |
IntArrayAssert |
IntArrayAssert.isNotEqualTo(int[] array)
Verifies that the actual
int array is not equal to the given array. |
Copyright © 2007-2012 FEST (Fixtures for Easy Software Testing). All Rights Reserved.