ch.powerunit.impl.AssertThatStringImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of powerunit Show documentation
Show all versions of powerunit Show documentation
This is a test framework for the JDK 1.8.
package ch.powerunit.impl;
import java.util.function.Supplier;
import ch.powerunit.AssertThatString;
public class AssertThatStringImpl extends AssertThatObjectImpl
implements AssertThatString {
public AssertThatStringImpl(Object underTest,boolean assertion, String msg,
Supplier provider) {
super(underTest,assertion, msg, provider);
}
}