Uses of Class
org.fest.assertions.BigDecimalAssert

Uses of BigDecimalAssert in org.fest.assertions
 

Methods in org.fest.assertions that return BigDecimalAssert
 BigDecimalAssert BigDecimalAssert.as(Description description)
          Sets the description of the actual value, to be used in as message of any AssertionError thrown when an assertion fails.
 BigDecimalAssert BigDecimalAssert.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 BigDecimalAssert Assertions.assertThat(BigDecimal actual)
          Creates a new instance of BigDecimalAssert.
 BigDecimalAssert BigDecimalAssert.describedAs(Description description)
          Alias for GenericAssert.as(Description), since "as" is a keyword in Groovy.
 BigDecimalAssert BigDecimalAssert.describedAs(String description)
          Alias for GenericAssert.as(String), since "as" is a keyword in Groovy.
 BigDecimalAssert BigDecimalAssert.doesNotSatisfy(Condition<BigDecimal> condition)
          Verifies that the actual BigDecimal does not satisfy the given condition.
 BigDecimalAssert BigDecimalAssert.is(Condition<BigDecimal> condition)
          Alias for satisfies(Condition).
 BigDecimalAssert BigDecimalAssert.isEqualByComparingTo(BigDecimal expected)
          Verifies that the actual BigDecimal is equal to the given one.
 BigDecimalAssert BigDecimalAssert.isEqualTo(BigDecimal expected)
          Verifies that the actual BigDecimal is equal to the given one.
 BigDecimalAssert BigDecimalAssert.isGreaterThan(BigDecimal other)
          Verifies that the actual BigDecimal value is greater than the given one.
 BigDecimalAssert BigDecimalAssert.isGreaterThanOrEqualTo(BigDecimal other)
          Verifies that the actual BigDecimal value is greater than or equal to the given one.
 BigDecimalAssert BigDecimalAssert.isLessThan(BigDecimal other)
          Verifies that the actual BigDecimal value is less than the given one.
 BigDecimalAssert BigDecimalAssert.isLessThanOrEqualTo(BigDecimal other)
          Verifies that the actual BigDecimal value is less than or equal to the given one.
 BigDecimalAssert BigDecimalAssert.isNegative()
          Verifies that the actual BigDecimal is negative.
 BigDecimalAssert BigDecimalAssert.isNot(Condition<BigDecimal> condition)
          Alias for doesNotSatisfy(Condition).
 BigDecimalAssert BigDecimalAssert.isNotEqualByComparingTo(BigDecimal expected)
          Verifies that the actual BigDecimal is not equal to the given one.
 BigDecimalAssert BigDecimalAssert.isNotEqualTo(BigDecimal other)
          Verifies that the actual BigDecimal is not equal to the given one.
 BigDecimalAssert BigDecimalAssert.isNotNull()
          Verifies that the actual BigDecimal is not null.
 BigDecimalAssert BigDecimalAssert.isNotSameAs(BigDecimal other)
          Verifies that the actual BigDecimal is not the same as the given one.
 BigDecimalAssert BigDecimalAssert.isNotZero()
          Verifies that the actual BigDecimal is not equal to zero, regardless of precision.
 BigDecimalAssert BigDecimalAssert.isPositive()
          Verifies that the actual BigDecimal is positive.
 BigDecimalAssert BigDecimalAssert.isSameAs(BigDecimal expected)
          Verifies that the actual BigDecimal is the same as the given one.
 BigDecimalAssert BigDecimalAssert.isZero()
          Verifies that the actual BigDecimal is equal to zero, regardless of precision.
 BigDecimalAssert BigDecimalAssert.overridingErrorMessage(String message)
          Replaces the default message displayed in case of a failure with the given one.
 BigDecimalAssert BigDecimalAssert.satisfies(Condition<BigDecimal> condition)
          Verifies that the actual BigDecimal satisfies the given condition.
 



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