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

isEqualIncludingScale

infix fun <T : BigDecimal> Expect<T>.isEqualIncludingScale(expected: T): Expect<T>

Expects that the subject of the assertion (a BigDecimal) is equal to expected including BigDecimal.scale.

Most of the time you want to use isNumericallyEqualTo which does not compare BigDecimal.scale in contrast to this function. Following the two functions compared:

Exceptions

AssertionError - Might throw an AssertionError if the assertion made is not correct.

Return
An Expect for the current subject of the assertion.