List of usage examples for org.apache.commons.compress.archivers ArchiveInputStream read
public int read() throws IOException
From source file:de.fanero.uncompress.stream.EmptyArchiveInputStreamTest.java
@Test public void testRead() throws Exception { ArchiveInputStream stream = EmptyArchiveInputStream.getInstance(); assertThat(stream.read(), is(-1)); }