what-the-bank/sources/org/bouncycastle/util/test/TestResult.java

11 lines
184 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package org.bouncycastle.util.test;
/* loaded from: classes6.dex */
public interface TestResult {
Throwable getException();
boolean isSuccessful();
String toString();
}