![JAR search and dependency download from the Maven repository](/logo.png)
nl.open.jwtdependency.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 java-jwt-nodependencies Show documentation
Show all versions of java-jwt-nodependencies Show documentation
This is a drop in replacement for the auth0 java-jwt library (see https://github.com/auth0/java-jwt). This jar makes sure there are no external dependencies (e.g. fasterXml, Apacha Commons) needed. This is useful when deploying to an application server (e.g. tomcat with Alfreso or Pega).
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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy