com.assertthat.plugins.standalone.ArgumentsReport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of assertthat-bdd-standalone Show documentation
Show all versions of assertthat-bdd-standalone Show documentation
AssertThat BDD Jira plugin client standalone
package com.assertthat.plugins.standalone;
public class ArgumentsReport extends Arguments{
public ArgumentsReport(String accessKey,
String secretKey,
String token,
String projectId,
String runName,
String jsonReportFolder,
String jsonReportIncludePattern,
String proxyURI,
String proxyUsername,
String proxyPassword,
String jql,
String type,
String jiraServerUrl,
String metadata,
boolean ignoreCertErrors) {
super(accessKey,
secretKey,
token,
projectId,
runName,
null,
jsonReportFolder,
jsonReportIncludePattern,
proxyURI,
proxyUsername,
proxyPassword,
null,
jql,
null,
type,
jiraServerUrl,
metadata,
false,
ignoreCertErrors,
false);
}
}