Package ch.powerunit.matchers.optional

Examples of ch.powerunit.matchers.optional.OptionalIntMatcher


   * @return the matcher on the optional
   */
  default org.hamcrest.Matcher<OptionalInt> optionalIntIs(
      org.hamcrest.Matcher<? super Integer> subMatcher) {
    return both((org.hamcrest.Matcher) optionalIntIsPresent()).and(
        new OptionalIntMatcher(subMatcher));
  }
View Full Code Here


     * @return the matcher on the optional
     */
    default org.hamcrest.Matcher<OptionalInt> optionalIntIs(
            org.hamcrest.Matcher<? super Integer> subMatcher) {
        return both((org.hamcrest.Matcher) optionalIntIsPresent()).and(
                new OptionalIntMatcher(subMatcher));
    }
View Full Code Here

TOP

Related Classes of ch.powerunit.matchers.optional.OptionalIntMatcher

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.