
co.poynt.postman.PostmanRunnerTools Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of postman-runner Show documentation
Show all versions of postman-runner Show documentation
A module to run a POSTMAN collections.
The newest version!
package co.poynt.postman;
import co.poynt.postman.runner.PostmanCollectionRunner;
import co.poynt.postman.testrail.PostmanTestrailSyncer;
import picocli.CommandLine;
@CommandLine.Command(name = "postman-tools", mixinStandardHelpOptions = true, versionProvider = VersionProvider.class,
//@formatter:off
subcommands = {
PostmanCollectionRunner.class,
PostmanTestrailSyncer.class
//@formatteer:on
})
public class PostmanRunnerTools implements Runnable {
@Override
public void run() {
CommandLine.usage(this, System.out);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy