Home
last modified time | relevance | path

Searched refs:checkIOE (Results 1 – 1 of 1) sorted by relevance

/libcore/ojluni/src/test/java/util/Base64/
DTestBase64.java323 checkIOE(() -> os.write(10)); in testIOE()
324 checkIOE(() -> os.write(new byte[] {10})); in testIOE()
325 checkIOE(() -> os.write(new byte[] {10}, 1, 4)); in testIOE()
333 checkIOE(() -> is.read()); in testIOE()
334 checkIOE(() -> is.read(new byte[] {10})); in testIOE()
335 checkIOE(() -> is.read(new byte[] {10}, 1, 4)); in testIOE()
336 checkIOE(() -> is.available()); in testIOE()
337 checkIOE(() -> is.skip(20)); in testIOE()
347 private static final void checkIOE(Testable t) throws Throwable { in checkIOE() method in TestBase64
438 checkIOE(new Testable() { in testMalformedPadding()