org.hamcrest.text.IsEmptyString Java Examples

The following examples show how to use org.hamcrest.text.IsEmptyString. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: VersionTest.java    From dungeon with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
@Test
public void versionStringShouldNotBeEmpty() {
  Assert.assertThat(Version.getCurrentVersion().toString(), new IsNot<>(new IsEmptyString()));
}
 
Example #2
Source File: StringChecker.java    From immutables with Apache License 2.0 4 votes vote down vote up
public void isEmpty() {
  verifyUsingMatcher(IsEmptyString.isEmptyString());
}
 
Example #3
Source File: StringChecker.java    From immutables with Apache License 2.0 4 votes vote down vote up
public void isNonEmpty() {
  verifyUsingMatcher(Matchers.not(IsEmptyString.isEmptyOrNullString()));
}
 
Example #4
Source File: StringChecker.java    From immutables with Apache License 2.0 4 votes vote down vote up
public void isNullOrEmpty() {
  verifyUsingMatcher(IsEmptyString.isEmptyOrNullString());
}
 
Example #5
Source File: StringChecker.java    From immutables with Apache License 2.0 4 votes vote down vote up
public void notEmpty() {
  verifyUsingMatcher(Matchers.not(IsEmptyString.isEmptyOrNullString()));
}