blob: ba1e255c2a0c2438915f59fbdd7a77da717ab0ee [file] [log] [blame]
/*
* Copyright 2008 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.google.gwt.junit;
import com.google.gwt.core.ext.UnableToCompleteException;
/**
* An abstract class that handles the details of launching a browser.
*/
abstract class RunStyle {
/**
* Possibly launches a browser window to run the specified module.
*
* @param moduleName the module to run
* @param forceLaunch If <code>true</code>, forces a new browser window to
* be launched (because <code>testCaseClassName</code> changed)
* @throws UnableToCompleteException
*/
public abstract void maybeLaunchModule(String moduleName, boolean forceLaunch)
throws UnableToCompleteException;
/**
* Tests whether the test was interrupted.
*
* @return <code>true</code> if the test has been interrupted.
*/
public boolean wasInterrupted() {
return false;
}
/**
* Gets the suffix of the URL to load.
*
* @param moduleName the module to run
* @return a URL suffix that should be loaded
*/
protected String getUrlSuffix(String moduleName) {
return moduleName + "/junit.html";
}
}