📄 failedtolaunchbrowserstandalonetesttest.java
字号:
package jsunit.java.tests_server.net.jsunit;
import junit.framework.TestResult;
import net.jsunit.configuration.ConfigurationSource;
import net.jsunit.model.ResultType;
public class FailedToLaunchBrowserStandaloneTestTest extends EndToEndTestCase {
protected ConfigurationSource configurationSource() {
return new StubConfigurationSource() {
public String browserFileNames() {
return "no_such_browser.exe";
}
public String url() {
return "http://localhost:"+port+"/jsunit/testRunner.html?" +
"testPage=http://localhost:"+port+"/jsunit/tests/jsUnitUtilityTests.html" +
"&autoRun=true&submitresults=true&resultId=foobar";
}
public String port() {
return String.valueOf(port);
}
};
}
public void testFailToLaunchBrowsers() throws Exception {
StandaloneTest test = new StandaloneTest(configurationSource());
TestResult result = test.run();
assertFalse(result.wasSuccessful());
assertEquals(ResultType.FAILED_TO_LAUNCH, test.getServer().lastResult().getResultType());
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -