public void testFailed404_noresume_result() throws Exception {
DownloadHandler downloadHandler = m_agentContext.getHandler(DownloadHandler.class);
DownloadHandle handle = downloadHandler.getHandle(m_404url);
Future<DownloadResult> future = handle.start(null);
assertIOException(future);
}
|