// This will fetch from backend.
requestException = sendRequest(client, localContext,urlToCall,null);
assertNull(requestException);
CacheResponseStatus responseStatus = (CacheResponseStatus) localContext.getAttribute(HttpCacheContext.CACHE_RESPONSE_STATUS);
assertEquals(CacheResponseStatus.CACHE_MISS,responseStatus);
try {
Thread.sleep(1000);
} catch (final Exception e) {