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