Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ePaul/96b8714f2218161df528c4760771349a to your computer and use it in GitHub Desktop.
Save ePaul/96b8714f2218161df528c4760771349a to your computer and use it in GitHub Desktop.
static final class StringIsEmpty {
@BeforeTemplate
boolean equalsEmptyString(String string) {
return string.equals("");
}
@BeforeTemplate
boolean lengthEquals0(String string) {
return string.length() == 0;
}
@AfterTemplate
boolean after(String string) {
return string.isEmpty();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment