
com.jayway.jsonpath.web.bench.Result Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-path-web-test Show documentation
Show all versions of json-path-web-test Show documentation
A library to query and verify JSON
package com.jayway.jsonpath.web.bench;
import com.jayway.jsonpath.internal.JsonFormatter;
public class Result {
public final String provider;
public final long time;
public final String result;
public final String error;
public Result(String provider, long time, String result, String error) {
this.provider = provider;
this.time = time;
this.result = result != null ? JsonFormatter.prettyPrint(result) : result;
this.error = error;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy