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