Example #1
0
 @Test
 public void testStream() throws IOException {
   PDFFilterList filters = stream.getFilterList();
   filters.addFilter("null");
   byte[] bytes = createSampleData();
   stream.setData(bytes);
   ByteArrayOutputStream actual = new ByteArrayOutputStream();
   stream.outputRawStreamData(actual);
   assertArrayEquals(bytes, actual.toByteArray());
 }