Skip to content

Commit f3fe62e

Browse files
committed
Add code coverage for markSupported().
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/io/trunk@1300283 13f79535-47bb-0310-9956-ffa450edef68
1 parent ea6fc33 commit f3fe62e

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

src/test/java/org/apache/commons/io/input/CharSequenceInputStreamTest.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,4 +158,10 @@ public void testMarkReset() throws Exception {
158158
r.reset();
159159
}
160160

161+
@Test
162+
public void testMarkSupported() throws Exception {
163+
InputStream r = new CharSequenceInputStream("test", "UTF-8");
164+
assertTrue(r.markSupported());
165+
}
166+
161167
}

0 commit comments

Comments
 (0)