* in HttpURLConnection using GetInputStream() and Connect()
*/
public void test_UseCache_HttpURLConnection_Connect_GetInputStream()
throws Exception {
// set cache before URLConnection created, or it does not take effect
ResponseCache rc = new MockNonCachedResponseCache();
ResponseCache.setDefault(rc);
uc = (HttpURLConnection) url.openConnection();
assertFalse(isGetCalled);
uc.setUseCaches(true);
uc.setDoOutput(true);