Modifier and Type | Method and Description |
---|---|
static ObjectArrayAssert |
Assertions.assertThat(Object[] actual)
Creates a new instance of
. |
ObjectArrayAssert |
ObjectArrayAssert.hasAllElementsOfType(Class<?> type)
Verifies that all the elements in the actual
Object array belong to the specified type. |
ObjectArrayAssert |
ObjectArrayAssert.hasAtLeastOneElementOfType(Class<?> type)
Verifies that at least one element in the actual
Object array belong to the specified type. |
ObjectArrayAssert |
ObjectArrayAssert.isEqualTo(Object[] expected)
Verifies that the actual
Object array is equal to the given array. |
ObjectArrayAssert |
ObjectArrayAssert.isNotEqualTo(Object[] array)
Verifies that the actual
Object array is not equal to the given array. |
ObjectArrayAssert |
ObjectArrayAssert.onProperty(String propertyName)
Creates a new instance of
whose target array contains the values of the
given property name from the elements of this ObjectArrayAssert 's array. |
Copyright © 2007-2012 FEST (Fixtures for Easy Software Testing). All Rights Reserved.