Package org.jbehave.ant

Source Code of org.jbehave.ant.RunStoriesAsPaths

package org.jbehave.ant;

import static org.apache.tools.ant.Project.MSG_INFO;

import org.apache.tools.ant.BuildException;
import org.jbehave.core.embedder.Embedder;

/**
* Ant task that runs stories as paths
*/
public class RunStoriesAsPaths extends AbstractEmbedderTask {
   
    public void execute() throws BuildException {
        Embedder embedder = newEmbedder();
        log("Running stories as paths using embedder "+embedder, MSG_INFO);
    embedder.runStoriesAsPaths(storyPaths());
    }

}
TOP

Related Classes of org.jbehave.ant.RunStoriesAsPaths

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.