Package com.google.sitebricks.acceptance.util

Source Code of com.google.sitebricks.acceptance.util.AcceptanceTest

package com.google.sitebricks.acceptance.util;

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.htmlunit.HtmlUnitDriver;

/**
* @author Tom Wilson (tom@tomwilson.name)
*/
public class AcceptanceTest {
  public static final String SUITE = "acceptance";

  public static WebDriver createWebDriver() {
    return new HtmlUnitDriver();
  }

  public static String baseUrl() {
    return Jetty.baseUrl();
  }
}
TOP

Related Classes of com.google.sitebricks.acceptance.util.AcceptanceTest

TOP
Copyright © 2018 www.massapi.com. 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.