org.bouncycastle.util.test.SimpleTestResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-ext-debug-jdk18on Show documentation
Show all versions of bcprov-ext-debug-jdk18on Show documentation
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for Java 1.8 and later with debug enabled.
The newest version!
package org.bouncycastle.util.test;
import org.bouncycastle.util.Strings;
public class SimpleTestResult implements TestResult
{
private static final String SEPARATOR = Strings.lineSeparator();
private boolean success;
private String message;
private Throwable exception;
public SimpleTestResult(boolean success, String message)
{
this.success = success;
this.message = message;
}
public SimpleTestResult(boolean success, String message, Throwable exception)
{
this.success = success;
this.message = message;
this.exception = exception;
}
public static TestResult successful(
Test test,
String message)
{
return new SimpleTestResult(true, test.getName() + ": " + message);
}
public static TestResult failed(
Test test,
String message)
{
return new SimpleTestResult(false, test.getName() + ": " + message);
}
public static TestResult failed(
Test test,
String message,
Throwable t)
{
return new SimpleTestResult(false, test.getName() + ": " + message, t);
}
public static TestResult failed(
Test test,
String message,
Object expected,
Object found)
{
return failed(test, message + SEPARATOR + "Expected: " + expected + SEPARATOR + "Found : " + found);
}
public static String failedMessage(String algorithm, String testName, String expected,
String actual)
{
StringBuffer sb = new StringBuffer(algorithm);
sb.append(" failing ").append(testName);
sb.append(SEPARATOR).append(" expected: ").append(expected);
sb.append(SEPARATOR).append(" got : ").append(actual);
return sb.toString();
}
public boolean isSuccessful()
{
return success;
}
public String toString()
{
return message;
}
public Throwable getException()
{
return exception;
}
}