HomeSort by relevance Sort by last modified time
    Searched full:suppresseda (Results 1 - 1 of 1) sorted by null

  /libcore/luni/src/test/java/libcore/java/lang/
ThrowableTest.java 76 Throwable suppressedA = new Throwable();
77 throwable.addSuppressed(suppressedA);
78 assertSuppressed(throwable, suppressedA);
81 assertSuppressed(throwable, suppressedA, suppressedB);
86 Throwable suppressedA = new Throwable();
87 throwable.addSuppressed(suppressedA);
88 throwable.addSuppressed(suppressedA);
89 throwable.addSuppressed(suppressedA);
90 assertSuppressed(throwable, suppressedA, suppressedA, suppressedA)
    [all...]

Completed in 691 milliseconds