* @deprecated use {@link #runTest(GWTTestCase, TestResult)} instead
*/
@Deprecated
public static void runTest(String moduleName, TestCase testCase, TestResult testResult, Strategy strategy)
throws UnableToCompleteException {
GWTTestCase gwtTestCase = (GWTTestCase) testCase;
assert moduleName != null : "moduleName cannot be null";
assert strategy != null : "strategy cannot be null";
assert moduleName.equals(gwtTestCase.getModuleName()) : "moduleName does not match GWTTestCase#getModuleName()";
assert strategy.equals(gwtTestCase.getStrategy()) : "strategy does not match GWTTestCase#getStrategy()";
runTest(gwtTestCase, testResult);
}