Package ch.powerunit.matchers.optional

Examples of ch.powerunit.matchers.optional.OptionalLongPresentMatcher


   * Check that the passed optional is present.
   *
   * @return the matcher on the optional
   */
  default org.hamcrest.Matcher<OptionalLong> optionalLongIsPresent() {
    return new OptionalLongPresentMatcher(is(true));
  }
View Full Code Here


   * Check that the passed optional is not present.
   *
   * @return the matcher on the optional
   */
  default org.hamcrest.Matcher<OptionalLong> optionalLongIsNotPresent() {
    return new OptionalLongPresentMatcher(not(true));
  }
View Full Code Here

     * Check that the passed optional is present.
     *
     * @return the matcher on the optional
     */
    default org.hamcrest.Matcher<OptionalLong> optionalLongIsPresent() {
        return new OptionalLongPresentMatcher(is(true));
    }
View Full Code Here

     * Check that the passed optional is not present.
     *
     * @return the matcher on the optional
     */
    default org.hamcrest.Matcher<OptionalLong> optionalLongIsNotPresent() {
        return new OptionalLongPresentMatcher(not(true));
    }
View Full Code Here

TOP

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

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.