com.github.karsaig.approvalcrest.jupiter.AssertImpl Maven / Gradle / Ivy
The newest version!
package com.github.karsaig.approvalcrest.jupiter;
import java.util.function.BiConsumer;
import org.hamcrest.Matcher;
import com.github.karsaig.approvalcrest.ComparisonDescription;
class AssertImpl extends com.github.karsaig.approvalcrest.AssertImplProxy {
@Override
protected void assertThat(String reason, T actual, Matcher super T> matcher, BiConsumer failureHandler) {
super.assertThat(reason, actual, matcher, failureHandler);
}
}