Modifier and Type | Method and Description |
---|---|
static IntAssert |
Assertions.assertThat(int actual)
Creates a new instance of
. |
static IntAssert |
Assertions.assertThat(Integer actual)
Creates a new instance of
. |
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-2012 FEST (Fixtures for Easy Software Testing). All Rights Reserved.