Uses of Class
org.fest.assertions.BooleanAssert

Uses of BooleanAssert in org.fest.assertions
 

Methods in org.fest.assertions that return BooleanAssert
 BooleanAssert BooleanAssert.as(Description description)
          Sets the description of the actual value, to be used in as message of any AssertionError thrown when an assertion fails.
 BooleanAssert BooleanAssert.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 BooleanAssert Assertions.assertThat(boolean actual)
          Creates a new instance of BooleanAssert.
static BooleanAssert Assertions.assertThat(Boolean actual)
          Creates a new instance of BooleanAssert.
 BooleanAssert BooleanAssert.describedAs(Description description)
          Alias for GenericAssert.as(Description), since "as" is a keyword in Groovy.
 BooleanAssert BooleanAssert.describedAs(String description)
          Alias for GenericAssert.as(String), since "as" is a keyword in Groovy.
 BooleanAssert BooleanAssert.doesNotSatisfy(Condition<Boolean> condition)
          Verifies that the actual Boolean does not satisfy the given condition.
 BooleanAssert BooleanAssert.is(Condition<Boolean> condition)
          Alias for satisfies(Condition).
 BooleanAssert BooleanAssert.isEqualTo(boolean expected)
          Verifies that the actual Boolean is equal to the given one.
 BooleanAssert BooleanAssert.isEqualTo(Boolean expected)
          Verifies that the actual Boolean value is equal to the given one.
 BooleanAssert BooleanAssert.isNot(Condition<Boolean> condition)
          Alias for doesNotSatisfy(Condition).
 BooleanAssert BooleanAssert.isNotEqualTo(boolean other)
          Verifies that the actual Boolean is not equal to the given one.
 BooleanAssert BooleanAssert.isNotEqualTo(Boolean other)
          Verifies that the actual Boolean is not equal to the given one.
 BooleanAssert BooleanAssert.isNotNull()
          Verifies that the actual Boolean is not null.
 BooleanAssert BooleanAssert.isNotSameAs(Boolean other)
          Verifies that the actual Boolean is not the same object as the given one.
 BooleanAssert BooleanAssert.isSameAs(Boolean expected)
          Verifies that the actual Boolean is the same object as the given one.
 BooleanAssert BooleanAssert.overridingErrorMessage(String message)
          Replaces the default message displayed in case of a failure with the given one.
 BooleanAssert BooleanAssert.satisfies(Condition<Boolean> condition)
          Verifies that the actual Boolean satisfies the given condition.
 



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