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