Package ch.powerunit.matchers.file

Examples of ch.powerunit.matchers.file.FileCanReadMatcher


   * @param matcher
   *            the matcher on the can read flag.
   * @return the matcher on the file.
   */
  default Matcher<File> fileCanRead(Matcher<? super Boolean> matcher) {
    return new FileCanReadMatcher(matcher);
  }
View Full Code Here


     * @param matcher
     *            the matcher on the can read flag.
     * @return the matcher on the file.
     */
    default Matcher<File> fileCanRead(Matcher<? super Boolean> matcher) {
        return new FileCanReadMatcher(matcher);
    }
View Full Code Here

TOP

Related Classes of ch.powerunit.matchers.file.FileCanReadMatcher

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.