Package org.fest.swing.junit.runner

Examples of org.fest.swing.junit.runner.FailureScreenshotTaker


   */
  public GUITestRunner(Class<?> testClass) throws InitializationError {
    this.testClass = testClass;
    testMethods = new TestIntrospector(testClass).getTestMethods(Test.class);
    validate();
    screenshotTaker = new FailureScreenshotTaker(new ImageFolderCreator().createImageFolder());
  }
View Full Code Here


   * @param testClass the class containing the tests to run.
   * @throws InitializationError if something goes wrong when creating this runner.
   */
  public GUITestRunner(Class<?> testClass) throws InitializationError {
    super(testClass);
    screenshotTaker = new FailureScreenshotTaker(new ImageFolderCreator().createImageFolder());
  }
View Full Code Here

TOP

Related Classes of org.fest.swing.junit.runner.FailureScreenshotTaker

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.