Modifier and Type | Method and Description |
---|---|
static LongAssert |
Assertions.assertThat(long actual)
Creates a new instance of
. |
static LongAssert |
Assertions.assertThat(Long actual)
Creates a new instance of
. |
LongAssert |
LongAssert.isEqualTo(long expected)
Verifies that the actual
Long is equal to the given one. |
LongAssert |
LongAssert.isGreaterThan(long other)
Verifies that the actual
Long is greater than the given one. |
LongAssert |
LongAssert.isGreaterThanOrEqualTo(long other)
Verifies that the actual
Long is greater or equal to the given one. |
LongAssert |
LongAssert.isLessThan(long other)
Verifies that the actual
Long is less than the given one. |
LongAssert |
LongAssert.isLessThanOrEqualTo(long other)
Verifies that the actual
Long is less or equal to the given one. |
LongAssert |
LongAssert.isNegative()
Verifies that the actual
Long is negative. |
LongAssert |
LongAssert.isNotEqualTo(long other)
Verifies that the actual
Long is not equal to the given one. |
LongAssert |
LongAssert.isPositive()
Verifies that the actual
Long is positive. |
LongAssert |
LongAssert.isZero()
Verifies that the actual
Long is equal to zero. |
Copyright © 2007-2013 FEST (Fixtures for Easy Software Testing). All Rights Reserved.