Package org.jtester.hamcrest.iassert.object.impl

Examples of org.jtester.hamcrest.iassert.object.impl.FileAssert


   * @param filename
   * @return
   */
  public IFileAssert file(String filename) {
    File file = new File(filename.replace("file:", ""));
    return new FileAssert(file);
  }
View Full Code Here


   *
   * @param file
   * @return
   */
  public IFileAssert file(File file) {
    return new FileAssert(file);
  }
View Full Code Here

   * a parameter file will be asserted
   *
   * @return
   */
  public IFileAssert file() {
    return new FileAssert();
  }
View Full Code Here

TOP

Related Classes of org.jtester.hamcrest.iassert.object.impl.FileAssert

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.