AssertThatStringImpl.java

  1. package ch.powerunit.impl;

  2. import java.util.function.Supplier;

  3. import ch.powerunit.AssertThatString;

  4. public class AssertThatStringImpl extends AssertThatObjectImpl<String>
  5.         implements AssertThatString {

  6.     public AssertThatStringImpl(Object underTest,boolean assertion, String msg,
  7.             Supplier<String> provider) {
  8.         super(underTest,assertion, msg, provider);
  9.     }

  10. }