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

info.novatec.testit.livingdoc.agent.server.Service Maven / Gradle / Ivy

package info.novatec.testit.livingdoc.agent.server;

import java.util.List;
import java.util.Vector;


public interface Service {
    /**
     * Executes the Specification under the given context: Runner /
     * SystemUnderTest.
     *
     * @param runnerParams the runner params
     * @param sutParams the sut params
     * @param specificationParams the specification params
     * @param implemented is the spec implemented
     * @param sections the sections
     * @param locale the locale
     * @return the Execution of the specification under the given context
     */
    List execute(Vector runnerParams, Vector sutParams, Vector specificationParams,
        boolean implemented, String sections, String locale);
}