Package org.bladerunnerjs.testing.specutility

Examples of org.bladerunnerjs.testing.specutility.DirectoryVerifier


  public NamedNodeBuilder given(NamedNode namedDirNode) { return new NamedNodeBuilder(this, namedDirNode); }
  public NamedNodeCommander when(NamedNode namedDirNode) { return new NamedNodeCommander(this, namedDirNode); }
  public NamedNodeVerifier then(NamedNode namedDirNode) { return new NamedNodeVerifier(this, namedDirNode); }
 
  // Directory
  public DirectoryVerifier then(File dir) { return new DirectoryVerifier(this, dir); }
View Full Code Here


  public NamedDirNodeVerifier and(NamedDirNode namedDirNode) { return new NamedDirNodeVerifier(specTest, namedDirNode); }
  public LoggerVerifier and(LogMessageStore logStore) { return new LoggerVerifier(specTest, logStore); }
  public AppServerVerifier and(ApplicationServer appServer) { return new AppServerVerifier(specTest, appServer); }
  public JettyServerVerifier and(Server jettyServer) { return new JettyServerVerifier(specTest, jettyServer); }
  public AppConfVerifier and(AppConf appConf) { return new AppConfVerifier(specTest, appConf); }
  public DirectoryVerifier and(File dir) { return new DirectoryVerifier(specTest, dir); }
View Full Code Here

TOP

Related Classes of org.bladerunnerjs.testing.specutility.DirectoryVerifier

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.