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