Uses of Class
org.fest.assertions.ObjectArrayAssert

Uses of ObjectArrayAssert in org.fest.assertions
 

Methods in org.fest.assertions that return ObjectArrayAssert
 ObjectArrayAssert ObjectArrayAssert.as(Description description)
          Sets the description of the actual value, to be used in as message of any AssertionError thrown when an assertion fails.
 ObjectArrayAssert ObjectArrayAssert.as(String description)
          Sets the description of the actual value, to be used in as message of any AssertionError thrown when an assertion fails.
static ObjectArrayAssert Assertions.assertThat(Object[] actual)
          Creates a new instance of ObjectArrayAssert.
 ObjectArrayAssert ObjectArrayAssert.contains(Object... objects)
          Verifies that the actual Object array contains the given objects.
 ObjectArrayAssert ObjectArrayAssert.containsOnly(Object... objects)
          Verifies that the actual Object array contains the given objects only.
 ObjectArrayAssert ObjectArrayAssert.describedAs(Description description)
          Alias for GenericAssert.as(Description), since "as" is a keyword in Groovy.
 ObjectArrayAssert ObjectArrayAssert.describedAs(String description)
          Alias for GenericAssert.as(String), since "as" is a keyword in Groovy.
 ObjectArrayAssert ObjectArrayAssert.doesNotHaveDuplicates()
          Verifies that the actual Object array does not have duplicates.
 ObjectArrayAssert ObjectArrayAssert.doesNotSatisfy(Condition<Object[]> condition)
          Verifies that the actual Object array does not satisfy the given condition.
 ObjectArrayAssert ObjectArrayAssert.excludes(Object... objects)
          Verifies that the actual Object array does not contain the given objects.
 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.hasSize(int expected)
          Verifies that the number of elements in the actual Object array is equal to the given one.
 ObjectArrayAssert ObjectArrayAssert.is(Condition<Object[]> condition)
          Alias for satisfies(Condition).
 ObjectArrayAssert ObjectArrayAssert.isEqualTo(Object[] expected)
          Verifies that the actual Object array is equal to the given array.
 ObjectArrayAssert ObjectArrayAssert.isNot(Condition<Object[]> condition)
          Alias for doesNotSatisfy(Condition).
 ObjectArrayAssert ObjectArrayAssert.isNotEmpty()
          Verifies that the actual Object array contains at least on element.
 ObjectArrayAssert ObjectArrayAssert.isNotEqualTo(Object[] array)
          Verifies that the actual Object array is not equal to the given array.
 ObjectArrayAssert ObjectArrayAssert.isNotNull()
          Verifies that the actual Object array is not null.
 ObjectArrayAssert ObjectArrayAssert.isNotSameAs(Object[] expected)
          Verifies that the actual Object array is not the same as the given array.
 ObjectArrayAssert ObjectArrayAssert.isSameAs(Object[] expected)
          Verifies that the actual Object array is the same as the given array.
 ObjectArrayAssert ObjectArrayAssert.onProperty(String propertyName)
          Creates a new instance of ObjectArrayAssert whose target array contains the values of the given property name from the elements of this ObjectArrayAssert's array.
 ObjectArrayAssert ObjectArrayAssert.overridingErrorMessage(String message)
          Replaces the default message displayed in case of a failure with the given one.
 ObjectArrayAssert ObjectArrayAssert.satisfies(Condition<Object[]> condition)
          Verifies that the actual Object array satisfies the given condition.
 



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