com.accenture.testing.bdd.Main Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bdd-for-all Show documentation
Show all versions of bdd-for-all Show documentation
A simple to use, easy to integrate, BDD library for API and microservices development.
The newest version!
package com.accenture.testing.bdd;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
public class Main {
/**
* handle the parsing of arguments to pass to.
*
* @param argv the command line arguments
*/
public static void main(String[] argv) {
List args = new ArrayList(Arrays.asList(argv));
// add the glue
args.add("-g");
args.add("com.accenture.testing.bdd.api.steps");
// add the pretty plugin
args.add("-p");
args.add("pretty");
BDDForAll bddForAll = new BDDForAll();
bddForAll.run(args);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy