Examples of off()


Examples of org.apache.commons.io.testtools.YellOnFlushAndCloseOutputStream.off()

           
        ByteArrayOutputStream baout = new ByteArrayOutputStream();
        YellOnFlushAndCloseOutputStream out = new YellOnFlushAndCloseOutputStream(baout, false, true);
       
        IOUtils.writeLines(list, (String) null, out);
        out.off();
        out.flush();
       
        String expected = "hello" + IOUtils.LINE_SEPARATOR + "world" + IOUtils.LINE_SEPARATOR;
        String actual = baout.toString();
        assertEquals(expected, actual);
View Full Code Here

Examples of org.apache.commons.io.testtools.YellOnFlushAndCloseOutputStream.off()

        ByteArrayOutputStream baout = new ByteArrayOutputStream();
        YellOnFlushAndCloseOutputStream out = new YellOnFlushAndCloseOutputStream(baout, false, true);
       
        IOUtils.writeLines(list, "*", out, "UTF-8");
       
        out.off();
        out.flush();
       
        String expected = "hello\u8364*world**this is**some text*";
        String actual = baout.toString("UTF-8");
        assertEquals(expected, actual);
View Full Code Here

Examples of org.apache.commons.io.testtools.YellOnFlushAndCloseOutputStream.off()

    public void testWriteLines_OutputStream_Encoding_nullData() throws Exception {
        ByteArrayOutputStream baout = new ByteArrayOutputStream();
        YellOnFlushAndCloseOutputStream out = new YellOnFlushAndCloseOutputStream(baout, false, true);
       
        IOUtils.writeLines((List<?>) null, "*", out, "US-ASCII");
        out.off();
        out.flush();
       
        assertEquals("Sizes differ", 0, baout.size());
    }

View Full Code Here

Examples of org.apache.commons.io.testtools.YellOnFlushAndCloseOutputStream.off()

           
        ByteArrayOutputStream baout = new ByteArrayOutputStream();
        YellOnFlushAndCloseOutputStream out = new YellOnFlushAndCloseOutputStream(baout, false, true);
       
        IOUtils.writeLines(list, (String) null, out, "US-ASCII");
        out.off();
        out.flush();
       
        String expected = "hello" + IOUtils.LINE_SEPARATOR + "world" + IOUtils.LINE_SEPARATOR;
        String actual = baout.toString();
        assertEquals(expected, actual);
View Full Code Here

Examples of org.apache.commons.io.testtools.YellOnFlushAndCloseOutputStream.off()

        ByteArrayOutputStream baout = new ByteArrayOutputStream();
        YellOnFlushAndCloseOutputStream out = new YellOnFlushAndCloseOutputStream(baout, false, true);
       
        IOUtils.writeLines(list, "*", out, null);
       
        out.off();
        out.flush();
       
        String expected = "hello*world**this is**some text*";
        String actual = baout.toString();
        assertEquals(expected, actual);
View Full Code Here

Examples of org.apache.commons.io.testtools.YellOnFlushAndCloseOutputStream.off()

        YellOnFlushAndCloseOutputStream out = new YellOnFlushAndCloseOutputStream(baout, true, true);
        Writer writer = new OutputStreamWriter(baout, "US-ASCII");
       
        IOUtils.writeLines(list, "*", writer);
       
        out.off();
        writer.flush();
       
        String expected = "hello*world**this is**some text*";
        String actual = baout.toString();
        assertEquals(expected, actual);
View Full Code Here

Examples of org.apache.commons.io.testtools.YellOnFlushAndCloseOutputStream.off()

        ByteArrayOutputStream baout = new ByteArrayOutputStream();
        YellOnFlushAndCloseOutputStream out = new YellOnFlushAndCloseOutputStream(baout, true, true);
        Writer writer = new OutputStreamWriter(baout, "US-ASCII");
       
        IOUtils.writeLines((List<?>) null, "*", writer);
        out.off();
        writer.flush();
       
        assertEquals("Sizes differ", 0, baout.size());
    }

View Full Code Here

Examples of org.apache.commons.io.testtools.YellOnFlushAndCloseOutputStream.off()

        ByteArrayOutputStream baout = new ByteArrayOutputStream();
        YellOnFlushAndCloseOutputStream out = new YellOnFlushAndCloseOutputStream(baout, true, true);
        Writer writer = new OutputStreamWriter(baout, "US-ASCII");
       
        IOUtils.writeLines(list, (String) null, writer);
        out.off();
        writer.flush();
       
        String expected = "hello" + IOUtils.LINE_SEPARATOR + "world" + IOUtils.LINE_SEPARATOR;
        String actual = baout.toString();
        assertEquals(expected, actual);
View Full Code Here

Examples of org.apache.commons.io.testtools.YellOnFlushAndCloseOutputStream.off()

        ByteArrayOutputStream baout = new ByteArrayOutputStream();
        YellOnFlushAndCloseOutputStream out = new YellOnFlushAndCloseOutputStream(baout, true, true);
        Writer writer = new OutputStreamWriter(baout, "US-ASCII");
       
        IOUtils.copy(in, writer);
        out.off();
        writer.flush();

        assertEquals("Not all bytes were read", 0, in.available());
        assertEquals("Sizes differ", inData.length, baout.size());
        assertTrue("Content differs", Arrays.equals(inData, baout.toByteArray()));
View Full Code Here

Examples of org.apache.commons.io.testtools.YellOnFlushAndCloseOutputStream.off()

        ByteArrayOutputStream baout = new ByteArrayOutputStream();
        YellOnFlushAndCloseOutputStream out = new YellOnFlushAndCloseOutputStream(baout, true, true);
        Writer writer = new OutputStreamWriter(baout, "US-ASCII");
       
        IOUtils.copy(in, writer, "UTF8");
        out.off();
        writer.flush();

        assertEquals("Not all bytes were read", 0, in.available());
        byte[] bytes = baout.toByteArray();
        bytes = new String(bytes, "UTF8").getBytes("US-ASCII");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.