public static AbstractBigDecimalAssert<?> resultOf(CheckedBigDecimalSupplier whenStep) { return assertThat(result(whenStep)); }
/** * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(BigDecimal)} */ default AbstractBigDecimalAssert<?> then(BigDecimal actual) { fluentBdd().verification.recordThen(this); return DELEGATE.assertThat(actual); }
/** * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(BigDecimal)} */ default AbstractBigDecimalAssert<?> and(BigDecimal actual) { fluentBdd().verification.recordThen(this); return DELEGATE.assertThat(actual); }
/** * Delegate call to public static org.assertj.core.api.AbstractBigDecimalAssert<?> org.assertj.core.api.Assertions.assertThat(java.math.BigDecimal) * {@link org.assertj.core.api.Assertions#assertThat(java.math.BigDecimal)} */ default AbstractBigDecimalAssert<?> assertThat(BigDecimal actual) { return Assertions.assertThat(actual); }