"bouncers.\n";
StringReader sr = new StringReader(str);
harness.check(true, "StringReader(String)");
try { // 1.2 API adds this exception, not in 1.1
harness.check(sr.ready(), "ready()");
}
catch (IOException e) {
harness.fail("Unexpected IOException on ready()");
}
harness.check(sr.markSupported(), "markSupported()");