Package org.jtester.hamcrest.matcher.string

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


    StringContainMatcher matcher = new StringContainMatcher(expecteds, modes);
    return (IStringAssert) this.assertThat(matcher);
  }

  public IStringAssert end(String expected, StringMode... modes) {
    StringEndWithMatcher matcher = new StringEndWithMatcher(expected);
    matcher.setStringModes(modes);
    return (IStringAssert) this.assertThat(matcher);
  }
View Full Code Here

TOP

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

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.