这是我的代码
public class JWebUnitTest extends WebTestCase {
public JWebUnitTest(String name) {
super(name);
}
public void setUp() {
getTestContext().setBaseUrl("http://www.google.com");
}
public void testSearch() {
beginAt("/");
setFormElement("q", "httpunit");
submit("btnG");
clickLinkWithText("HttpUnit");
assertTitleEquals("HttpUnit");
assertLinkPresentWithText("User's Manual");
}
}
在失败跟踪中,我看到以下错误:
java.lang.RuntimeException:java.io.IOException(向下移动..) 原因:java.net.SocketException:操作超时:连接:可能是由于地址无效
为什么“http://www.google.com/”是无效地址?为什么我会收到这个 IOException?