Package org.jtester.hamcrest.matcher.string

Examples of org.jtester.hamcrest.matcher.string.StringBlankMatcher


    Matcher matcher = new Matches(regex);
    return (IStringAssert) this.assertThat(matcher);
  }

  public IStringAssert notBlank() {
    Matcher matcher = IsNot.not(new StringBlankMatcher());
    return this.assertThat("expect string is blank", matcher);
  }
View Full Code Here

TOP

Related Classes of org.jtester.hamcrest.matcher.string.StringBlankMatcher

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.