All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.accenture.testing.bdd.Main Maven / Gradle / Ivy

Go to download

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