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