blob: 6f19ebff23fc5d77718059a68dac4b4cae1fda65 [file] [log] [blame]
/*
* Copyright 2006 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;
}
}