javax0.jamal.assertions.AssertEmpty 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;
public class AssertEmpty extends AbstractAssert {
public AssertEmpty() {
super(2, "'%s' is not empty", "value is empty");
}
@Override
protected boolean test(String[] parts) {
return parts[0].length() == 0;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy