javax0.jamal.assertions.AssertStartsWith Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jamal-assertions Show documentation
Show all versions of jamal-assertions Show documentation
Assertions module for Jamal
package javax0.jamal.assertions;
import javax0.jamal.api.Macro;
@Macro.Name({"assert:startsWith", "assert:startswith"})
public class AssertStartsWith extends AbstractAssert {
public AssertStartsWith() {
super(3, "'%s' does not start with '%s'", "'%s' starts with '%s'");
}
protected boolean test(String[] parts) {
return parts[0].startsWith(parts[1]);
}
}