Package | Description |
---|---|
de.tobiasroeser.lambdatest |
Modifier and Type | Method and Description |
---|---|
static ExpectDouble |
Expect.expectDouble(Double actual)
Check for non-null
Double and provided further checks on the
actual double in a fluent API. |
static ExpectDouble |
ExpectDouble.expectDouble(Double actual)
Check for non-null
Double and provided further checks on the actual
double in a fluent API. |
ExpectDouble |
ExpectDouble.isBetween(Double start,
Double end)
Checks, if actual is between start (inclusive) and end (exclusive).
|
ExpectDouble |
ExpectDouble.isCloseTo(Double expected,
Double eps)
Checks, if actual is close to expected regarding eps.
|
ExpectDouble |
ExpectDouble.isNaN()
Checks, if actual is not a number (NaN).
|
ExpectDouble |
ExpectDouble.isNotBetween(Double start,
Double end)
Checks, if actual is not between start (inclusive) and end (exclusive).
|
ExpectDouble |
ExpectDouble.isNotCloseTo(Double expected,
Double eps)
Checks, if actual is not close to expected regarding eps.
|
ExpectDouble |
ExpectDouble.isNotNaN()
Checks, if actual is not not a number (NaN).
|
Copyright © 2019. All rights reserved.