Package org.bladerunnerjs.testing.specutility

Examples of org.bladerunnerjs.testing.specutility.AppVerifier


  public NodePropertiesVerifier then(NodeProperties nodeProperties) { return new NodePropertiesVerifier(this, nodeProperties); }
 
  // App
  public AppBuilder given(App app) { return new AppBuilder(this, app); }
  public AppCommander when(App app) { return new AppCommander(this, app); }
  public AppVerifier then(App app) { return new AppVerifier(this, app); }
View Full Code Here


 
  public ExceptionsVerifier and(List<Throwable> exceptions) { return new ExceptionsVerifier(specTest, exceptions); }
  public NodeObserverVerifier and(EventObserver observer) { return new NodeObserverVerifier(specTest, observer); }
  public NamedNodeVerifier and(NamedNode namedDirNode) { return new NamedNodeVerifier(specTest, namedDirNode); }
  public BRJSVerifier and(BRJS brjs) { return new BRJSVerifier(specTest, brjs); }
  public AppVerifier and(App app) { return new AppVerifier(specTest, app); }
View Full Code Here

TOP

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

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.