Searched defs:getSuppressed (Results 1 - 1 of 1) sorted by relevance

/external/guava/guava-tests/test/com/google/common/io/
H A DCloserTest.java341 assertEquals(0, getSuppressed(thrownException).length);
351 ImmutableSet<Throwable> suppressed = ImmutableSet.copyOf(getSuppressed(thrownException));
363 static Throwable[] getSuppressed(Throwable throwable) { method in class:CloserTest
365 Method getSuppressed = Throwable.class.getDeclaredMethod("getSuppressed");
366 return (Throwable[]) getSuppressed.invoke(throwable);

Completed in 152 milliseconds