Uses of Class
org.fest.assertions.IntAssert

Uses of IntAssert in org.fest.assertions
 

Methods in org.fest.assertions that return IntAssert
 IntAssert IntAssert.as(Description description)
          Sets the description of the actual value, to be used in as message of any AssertionError thrown when an assertion fails.
 IntAssert IntAssert.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 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.describedAs(Description description)
          Alias for GenericAssert.as(Description), since "as" is a keyword in Groovy.
 IntAssert IntAssert.describedAs(String description)
          Alias for GenericAssert.as(String), since "as" is a keyword in Groovy.
 IntAssert IntAssert.doesNotSatisfy(Condition<Integer> condition)
          Verifies that the actual Integer does not satisfy the given condition.
 IntAssert IntAssert.is(Condition<Integer> condition)
          Alias for satisfies(Condition).
 IntAssert IntAssert.isEqualTo(int expected)
          Verifies that the actual Integer is equal to the given one.
 IntAssert IntAssert.isEqualTo(Integer 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.isNot(Condition<Integer> condition)
          Alias for doesNotSatisfy(Condition).
 IntAssert IntAssert.isNotEqualTo(int other)
          Verifies that the actual Integer is not equal to the given one.
 IntAssert IntAssert.isNotEqualTo(Integer other)
          Verifies that the actual Integer is not equal to the given one.
 IntAssert IntAssert.isNotNull()
          Verifies that the actual Integer is not null.
 IntAssert IntAssert.isNotSameAs(Integer other)
          Verifies that the actual Integer is not the same object as the given one.
 IntAssert IntAssert.isPositive()
          Verifies that the actual Integer is positive.
 IntAssert IntAssert.isSameAs(Integer expected)
          Verifies that the actual Integer is the same object as the given one.
 IntAssert IntAssert.isZero()
          Verifies that the actual Integer is equal to zero.
 IntAssert IntAssert.overridingErrorMessage(String message)
          Replaces the default message displayed in case of a failure with the given one.
 IntAssert IntAssert.satisfies(Condition<Integer> condition)
          Verifies that the actual Integer satisfies the given condition.
 



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