Package | Description |
---|---|
org.fest.assertions.api |
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 value is equal to the given one.
|
LongAssert |
LongAssert.isGreaterThan(long other)
Verifies that the actual value is greater than the given one.
|
LongAssert |
LongAssert.isGreaterThanOrEqualTo(long other)
Verifies that the actual value is greater than or equal to the given one.
|
LongAssert |
LongAssert.isLessThan(long other)
Verifies that the actual value is less than the given one.
|
LongAssert |
LongAssert.isLessThanOrEqualTo(long other)
Verifies that the actual value is less than or equal to the given one.
|
LongAssert |
LongAssert.isNegative()
Verifies that the actual value is negative.
|
LongAssert |
LongAssert.isNotEqualTo(long other)
Verifies that the actual value is not equal to the given one.
|
LongAssert |
LongAssert.isNotNegative()
Verifies that the actual value is non negative (positive or equal zero).
|
LongAssert |
LongAssert.isNotPositive()
Verifies that the actual value is non positive (negative or equal zero).
|
LongAssert |
LongAssert.isNotZero()
Verifies that the actual value is not equal to zero.
|
LongAssert |
LongAssert.isPositive()
Verifies that the actual value is positive.
|
LongAssert |
LongAssert.isZero()
Verifies that the actual value is equal to zero.
|
LongAssert |
LongAssert.usingComparator(Comparator<? super Long> customComparator) |
LongAssert |
LongAssert.usingDefaultComparator() |
Copyright © 2007–2014. All rights reserved.