doc / ch.tutteli.atrium.api.infix.en_GB / isNotNumericallyEqualTo

isNotNumericallyEqualTo

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

Expects that the subject of this expectation (a BigDecimal) is not 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 isNotEqualIncludingScale because isNotEqualIncludingScale compares BigDecimal.scale. Following the two functions compared:

Return
an Expect for the subject of this expectation.