S
- the "self" type of this assertion class. Please read "Emulating
'self types' using Java Generics to simplify fluent API implementation" for more details.A
- the type of the "actual" value.public interface NumberAssert<S extends NumberAssert<S,A>,A extends Number>
Number
s.Modifier and Type | Method and Description |
---|---|
S |
isBetween(A start,
A end)
Verifies that the actual value is in [start, end] range (start included, end included).
|
S |
isNegative()
Verifies that the actual value is negative.
|
S |
isNotNegative()
Verifies that the actual value is non negative (positive or equal zero).
|
S |
isNotPositive()
Verifies that the actual value is non positive (negative or equal zero).
|
S |
isNotZero()
Verifies that the actual value is not equal to zero.
|
S |
isPositive()
Verifies that the actual value is positive.
|
S |
isStrictlyBetween(A start,
A end)
Verifies that the actual value is in ]start, end[ range (start excluded, end excluded).
|
S |
isZero()
Verifies that the actual value is equal to zero.
|
S isZero()
AssertionError
- if the actual value is null
.AssertionError
- if the actual value is not equal to zero.S isNotZero()
AssertionError
- if the actual value is null
.AssertionError
- if the actual value is equal to zero.S isPositive()
AssertionError
- if the actual value is null
.AssertionError
- if the actual value is not positive.S isNegative()
AssertionError
- if the actual value is null
.AssertionError
- if the actual value is not negative.S isNotNegative()
this
assertion object.AssertionError
- if the actual value is null
.AssertionError
- if the actual value is not non negative.S isNotPositive()
this
assertion object.AssertionError
- if the actual value is null
.AssertionError
- if the actual value is not non positive.S isBetween(A start, A end)
// these assertions succeed ...
assertThat(12).isBetween(10, 14);
assertThat(12).isBetween(12, 14);
assertThat(12).isBetween(10, 12);
// ... but these one fails
assertThat(12).isBetween(14, 16);
start
- the start value (inclusive), expected not to be null.end
- the end value (inclusive), expected not to be null.AssertionError
- if the actual value is null
.NullPointerException
- if start value is null
.NullPointerException
- if end value is null
.AssertionError
- if the actual value is not in [start, end] range.S isStrictlyBetween(A start, A end)
// this assertion succeeds ...
assertThat(12).isBetween(10, 14);
// ... but these one fails
assertThat(12).isBetween(12, 14);
assertThat(12).isBetween(10, 12);
assertThat(12).isBetween(16, 18);
start
- the start value (exclusive), expected not to be null.end
- the end value (exclusive), expected not to be null.AssertionError
- if the actual value is null
.NullPointerException
- if start value is null
.NullPointerException
- if end value is null
.AssertionError
- if the actual value is not in ]start, end[ range.Copyright © 2013-2015 AssertJ. All Rights Reserved.