public void testDoubleClosedStreamOk() throws Exception {
ConnectionHandler handler = new TestConnectionHandler(new CompleteContentConnection(m_content, true));
ContentRangeInputStream is = new ContentRangeInputStream(handler, m_testURL);
is.close(); // simulate an early close...
is.close(); // not a problem...
}
|