我正在尝试编写一个android测试用例-
如何测试变量是否为空
我有这个代码
String request = getRequestString();
LinkedHashMap<String, String> cookie = sendPostRequest(MainActivity.this, url, request);
如何测试请求的内容和 cookie 的内容?
我正在尝试编写一个android测试用例-
如何测试变量是否为空
我有这个代码
String request = getRequestString();
LinkedHashMap<String, String> cookie = sendPostRequest(MainActivity.this, url, request);
如何测试请求的内容和 cookie 的内容?