@Test(expected = IOException.class)
 public void testReadyThrowsExceptionIfClosed() throws IOException {
   _textReader.close();
   _textReader.ready();
 }
 @Test
 public void testReady() throws IOException {
   assertTrue("CharSequenceReader is Ready!", _textReader.ready());
 }