Uses of Class
org.fest.assertions.api.LongAssert

Packages that use LongAssert
org.fest.assertions.api   
 

Uses of LongAssert in org.fest.assertions.api
 

Methods in org.fest.assertions.api that return LongAssert
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.isEqualTo(long expected)
          Verifies that the actual value is equal to the given one.
 LongAssert LongAssert.isGreaterThan(long other)
          Verifies that the actual value is greater than the given one.
 LongAssert LongAssert.isGreaterThanOrEqualTo(long other)
          Verifies that the actual value is greater than or equal to the given one.
 LongAssert LongAssert.isLessThan(long other)
          Verifies that the actual value is less than the given one.
 LongAssert LongAssert.isLessThanOrEqualTo(long other)
          Verifies that the actual value is less than or equal to the given one.
 LongAssert LongAssert.isNegative()
          Verifies that the actual value is negative.
 LongAssert LongAssert.isNotEqualTo(long other)
          Verifies that the actual value is not equal to the given one.
 LongAssert LongAssert.isNotZero()
          Verifies that the actual value is not equal to zero.
 LongAssert LongAssert.isPositive()
          Verifies that the actual value is positive.
 LongAssert LongAssert.isZero()
          Verifies that the actual value is equal to zero.
 LongAssert LongAssert.usingComparator(Comparator<?> customComparator)
           
 LongAssert LongAssert.usingDefaultComparator()
           
 



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