Package ch.powerunit.matchers.optional

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


     * @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

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

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.