Uses of Class
org.fest.assertions.LongAssert

Uses of LongAssert in org.fest.assertions
 

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



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