doc / ch.tutteli.atrium.api.fluent.en_GB / isNumericallyEqualTo

isNumericallyEqualTo

fun <T : BigDecimal> Expect<T>.isNumericallyEqualTo(expected: T): Expect<T> (source)
Deprecated: Use toEqualNumerically; will be removed with 1.0.0 at the latest

Expects that the subject of this expectation (a BigDecimal) is numerically equal to expected.

By numerically is meant that it will not compare BigDecimal.scale (or in other words, it uses compareTo(expected) == 0)

Most of the time you want to use this function instead of isEqualIncludingScale because isEqualIncludingScale compares BigDecimal.scale. Following the two functions compared:

Return
an Expect for the subject of this expectation.