use of java.util.zip.DeflaterOutputStream in project jPOS by jpos.
the class DailyLogListenerTest method testCloseCompressedOutputStream.
@Test
public void testCloseCompressedOutputStream() throws Throwable {
OutputStream os = new DeflaterOutputStream(new PrintStream(new ByteArrayOutputStream()), new Deflater());
DailyLogListener dailyLogListener = new DailyLogListener();
dailyLogListener.closeCompressedOutputStream(os);
assertTrue("Test completed without Exception", true);
}
Aggregations