Uses of Class
org.fest.assertions.BooleanArrayAssert

Uses of BooleanArrayAssert in org.fest.assertions
 

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



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