Examples of OptionalLongMatcher


Examples of ch.powerunit.matchers.optional.OptionalLongMatcher

   * @return the matcher on the optional
   */
  default org.hamcrest.Matcher<OptionalLong> optionalLongIs(
      org.hamcrest.Matcher<? super Long> subMatcher) {
    return both((org.hamcrest.Matcher) optionalLongIsPresent()).and(
        new OptionalLongMatcher(subMatcher));
  }
View Full Code Here

Examples of ch.powerunit.matchers.optional.OptionalLongMatcher

     * @return the matcher on the optional
     */
    default org.hamcrest.Matcher<OptionalLong> optionalLongIs(
            org.hamcrest.Matcher<? super Long> subMatcher) {
        return both((org.hamcrest.Matcher) optionalLongIsPresent()).and(
                new OptionalLongMatcher(subMatcher));
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.