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

Packages that use IntegerAssert
org.fest.assertions.api   
 

Uses of IntegerAssert in org.fest.assertions.api
 

Methods in org.fest.assertions.api that return IntegerAssert
static IntegerAssert Assertions.assertThat(int actual)
          Creates a new instance of IntegerAssert.
static IntegerAssert Assertions.assertThat(Integer actual)
          Creates a new instance of IntegerAssert.
 IntegerAssert IntegerAssert.isEqualTo(int expected)
          Verifies that the actual value is equal to the given one.
 IntegerAssert IntegerAssert.isGreaterThan(int other)
          Verifies that the actual value is greater than the given one.
 IntegerAssert IntegerAssert.isGreaterThanOrEqualTo(int other)
          Verifies that the actual value is greater than or equal to the given one.
 IntegerAssert IntegerAssert.isLessThan(int other)
          Verifies that the actual value is less than the given one.
 IntegerAssert IntegerAssert.isLessThanOrEqualTo(int other)
          Verifies that the actual value is less than or equal to the given one.
 IntegerAssert IntegerAssert.isNegative()
          Verifies that the actual value is negative.
 IntegerAssert IntegerAssert.isNotEqualTo(int other)
          Verifies that the actual value is not equal to the given one.
 IntegerAssert IntegerAssert.isNotZero()
          Verifies that the actual value is not equal to zero.
 IntegerAssert IntegerAssert.isPositive()
          Verifies that the actual value is positive.
 IntegerAssert IntegerAssert.isZero()
          Verifies that the actual value is equal to zero.
 IntegerAssert IntegerAssert.usingComparator(Comparator<?> customComparator)
           
 IntegerAssert IntegerAssert.usingDefaultComparator()
           
 



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