aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/java/org/spongycastle/util/test/TestResult.java
blob: edf3803e79035dca75d14870bc48f9f86b4a9e2f (plain)
1
2
3
4
5
6
7
8
9
10
package org.spongycastle.util.test;

public interface TestResult
{
    public boolean isSuccessful();
    
    public Throwable getException();
    
    public String toString();
}