Exemplo n.º 1
0
 @Test
 public void testMakeInputStream() throws IOException {
   Assert.assertNotNull(ioPeon.makeInputStream(tmpFolder.newFile(TMP_FILE_NAME).getName()));
 }
Exemplo n.º 2
0
 @Test(expected = UnsupportedOperationException.class)
 public void testCleanup() throws IOException {
   ioPeon.cleanup();
 }
Exemplo n.º 3
0
 @Test
 public void testMakeOutputStream() throws IOException {
   Assert.assertNotNull(ioPeon.makeOutputStream(TMP_FILE_NAME));
 }