com.assertthat.plugins.standalone.ArgumentsFeatures 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 ArgumentsFeatures extends Arguments{
public ArgumentsFeatures(String accessKey,
String secretKey,
String token,
String projectId,
String outputFolder,
String proxyURI,
String proxyUsername,
String proxyPassword,
String mode,
String jql,
String tags,
String jiraServerUrl,
boolean numbered,
boolean ignoreCertErrors,
boolean cleanupFeatures) {
super(accessKey,
secretKey,
token,
projectId,
null,
outputFolder,
null,
null,
proxyURI,
proxyUsername,
proxyPassword,
mode,
jql,
tags,
null,
jiraServerUrl,
null,
numbered,
ignoreCertErrors,
cleanupFeatures);
}
}