use of org.assertj.core.internal.BigDecimals in project assertj-core by joel-costigliola.
the class AbstractBigDecimalAssert method usingComparator.
@Override
@CheckReturnValue
public SELF usingComparator(Comparator<? super BigDecimal> customComparator, String customComparatorDescription) {
super.usingComparator(customComparator, customComparatorDescription);
this.bigDecimals = new BigDecimals(new ComparatorBasedComparisonStrategy(customComparator, customComparatorDescription));
return myself;
}
Aggregations