Home
last modified time | relevance | path

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

/external/guava/guava-tests/test/com/google/common/base/
DThrowablesTest.java428 assertSame(exception, Throwables.getRootCause(exception)); in testGetRootCause_NoCause()
434 assertSame(cause, Throwables.getRootCause(exception)); in testGetRootCause_SingleWrapped()
441 assertSame(cause, Throwables.getRootCause(exception)); in testGetRootCause_DoubleWrapped()
/external/guava/guava/src/com/google/common/base/
DThrowables.java172 public static Throwable getRootCause(Throwable throwable) { in getRootCause() method in Throwables
/external/dagger2/compiler/src/it/producers-functional-tests/src/test/java/producerstest/monitoring/
DMonitoringTest.java143 assertThat(Throwables.getRootCause(e)).isSameAs(cause); in basicMonitoringWithFailure()