com.github.dakusui.actionunit.core.ContextPredicate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of actionunit Show documentation
Show all versions of actionunit Show documentation
A library to build 'action' structure for testing
package com.github.dakusui.actionunit.core;
import java.util.Formattable;
import java.util.Formatter;
import java.util.function.Predicate;
public interface ContextPredicate extends Predicate, Formattable {
@Override
default void formatTo(Formatter formatter, int flags, int width, int precision) {
formatter.format("condition");
}
}