You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ni...@apache.org on 2010/10/18 01:29:45 UTC

svn commit: r1023598 - /commons/proper/io/trunk/src/test/java/org/apache/commons/io/output/WriterOutputStreamTest.java

Author: niallp
Date: Sun Oct 17 23:29:44 2010
New Revision: 1023598

URL: http://svn.apache.org/viewvc?rev=1023598&view=rev
Log:
IO-253 switch new buffered tests from "large2

Modified:
    commons/proper/io/trunk/src/test/java/org/apache/commons/io/output/WriterOutputStreamTest.java

Modified: commons/proper/io/trunk/src/test/java/org/apache/commons/io/output/WriterOutputStreamTest.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/test/java/org/apache/commons/io/output/WriterOutputStreamTest.java?rev=1023598&r1=1023597&r2=1023598&view=diff
==============================================================================
--- commons/proper/io/trunk/src/test/java/org/apache/commons/io/output/WriterOutputStreamTest.java (original)
+++ commons/proper/io/trunk/src/test/java/org/apache/commons/io/output/WriterOutputStreamTest.java Sun Oct 17 23:29:44 2010
@@ -81,24 +81,24 @@ public class WriterOutputStreamTest exte
         testWithSingleByteWrite(TEST_STRING, "UTF-16");
     }
 
-    public void testLargeUTF16WithBufferedWrite() throws IOException {
-        testWithBufferedWrite(LARGE_TEST_STRING, "UTF-16");
+    public void testUTF16WithBufferedWrite() throws IOException {
+        testWithBufferedWrite(TEST_STRING, "UTF-16");
     }
 
     public void testUTF16BEWithSingleByteWrite() throws IOException {
         testWithSingleByteWrite(TEST_STRING, "UTF-16BE");
     }
 
-    public void testLargeUTF16BEWithBufferedWrite() throws IOException {
-        testWithBufferedWrite(LARGE_TEST_STRING, "UTF-16BE");
+    public void testUTF16BEWithBufferedWrite() throws IOException {
+        testWithBufferedWrite(TEST_STRING, "UTF-16BE");
     }
 
     public void testUTF16LEWithSingleByteWrite() throws IOException {
         testWithSingleByteWrite(TEST_STRING, "UTF-16LE");
     }
 
-    public void testLargeUTF16LEWithBufferedWrite() throws IOException {
-        testWithBufferedWrite(LARGE_TEST_STRING, "UTF-16LE");
+    public void testUTF16LEWithBufferedWrite() throws IOException {
+        testWithBufferedWrite(TEST_STRING, "UTF-16LE");
     }