All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax0.jamal.assertions.AssertEmpty Maven / Gradle / Ivy

The newest version!
package javax0.jamal.assertions;

import javax0.jamal.api.Macro;

@Macro.Name("assert:empty")
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].isEmpty();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy