@SmallTest
@Feature({"Cronet"})
@CompareDefaultWithCronet
public void testGetOutputStreamAfterConnectionMade() throws Exception {
URL url = new URL(NativeTestServer.getEchoBodyURL());
HttpURLConnection connection =
(HttpURLConnection) url.openConnection();
connection.setDoOutput(true);
connection.setRequestMethod("POST");
assertEquals(200, connection.getResponseCode());
try {
connection.getOutputStream();
fail();
} catch (java.net.ProtocolException e) {
// Expected.
}
}
CronetBufferedOutputStreamTest.java 文件源码
java
阅读 22
收藏 0
点赞 0
评论 0
项目:chromium-net-for-android
作者:
评论列表
文章目录