Author: sebb
Date: Sun Apr 21 22:31:50 2013
New Revision: 1470356

URL: http://svn.apache.org/r1470356
Log:
Document another broken test method

Modified:
    
commons/proper/io/trunk/src/test/java/org/apache/commons/io/input/CharSequenceInputStreamTest.java

Modified: 
commons/proper/io/trunk/src/test/java/org/apache/commons/io/input/CharSequenceInputStreamTest.java
URL: 
http://svn.apache.org/viewvc/commons/proper/io/trunk/src/test/java/org/apache/commons/io/input/CharSequenceInputStreamTest.java?rev=1470356&r1=1470355&r2=1470356&view=diff
==============================================================================
--- 
commons/proper/io/trunk/src/test/java/org/apache/commons/io/input/CharSequenceInputStreamTest.java
 (original)
+++ 
commons/proper/io/trunk/src/test/java/org/apache/commons/io/input/CharSequenceInputStreamTest.java
 Sun Apr 21 22:31:50 2013
@@ -239,6 +239,7 @@ public class CharSequenceInputStreamTest
         testSingleByteRead(LARGE_TEST_STRING, "UTF-8");
     }
 
+    // This test is broken for charsets that don't create a single byte for 
each char
     private void testMarkReset(final String csName) throws Exception {
         final InputStream r = new CharSequenceInputStream("test", csName);
         try {
@@ -259,7 +260,7 @@ public class CharSequenceInputStreamTest
     }
 
     @Test
-    @Ignore
+    @Ignore // Test broken for charsets that create multiple bytes for a 
single char
     public void testMarkReset_RequiredCharsets() throws Exception {
         for (final String csName : getRequiredCharsetNames()) {
             testMarkReset(csName);


Reply via email to