Uses of Class
org.fest.assertions.IntAssert

Uses of IntAssert in org.fest.assertions
 

Methods in org.fest.assertions that return IntAssert
static IntAssert Assertions.assertThat(int actual)
          Creates a new instance of IntAssert.
static IntAssert Assertions.assertThat(Integer actual)
          Creates a new instance of IntAssert.
 IntAssert IntAssert.isEqualTo(int expected)
          Verifies that the actual Integer is equal to the given one.
 IntAssert IntAssert.isGreaterThan(int other)
          Verifies that the actual Integer is greater than the given one.
 IntAssert IntAssert.isGreaterThanOrEqualTo(int other)
          Verifies that the actual Integer is greater or equal to the given one.
 IntAssert IntAssert.isLessThan(int other)
          Verifies that the actual Integer is less than the given one.
 IntAssert IntAssert.isLessThanOrEqualTo(int other)
          Verifies that the actual Integer is less or equal to the given one.
 IntAssert IntAssert.isNegative()
          Verifies that the actual Integer is negative.
 IntAssert IntAssert.isNotEqualTo(int other)
          Verifies that the actual Integer is not equal to the given one.
 IntAssert IntAssert.isPositive()
          Verifies that the actual Integer is positive.
 IntAssert IntAssert.isZero()
          Verifies that the actual Integer is equal to zero.
 



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