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