我正在androidTest目录中为Android设备编写Java测试。我需要在我的计算机上执行HTTP GET请求。但由于某种原因,我的方法是在连接的Android手机上执行的。
public class HttpRequests {
@Test
public void dropSession() throws IOException {
String url = "url.url";
OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder()
.url(url)
.build();
try (Response response = client.newCall(request).execute()) {
if (!response.isSuccessful()) {
throw new IOException("Unexpected response code: " + response);
}
String responseBody = response.body().string();
}
}
}
1条答案
按热度按时间omqzjyyz1#
如果你想在你的电脑上而不是连接的Android手机上执行测试,那么你应该把你的测试代码放在
src/test
而不是src/androidTest
中。