Package bdd

Source Code of bdd.ParsingTest

package bdd;

import bdd.embedders.ParsingEmbedder;
import org.jbehave.core.embedder.Embedder;
import org.jbehave.core.io.StoryFinder;
import org.junit.Test;

import java.util.List;

import static org.jbehave.core.io.CodeLocations.codeLocationFromClass;

public class ParsingTest {

    @Test
    public void run() throws Throwable {
        Embedder embedder = new ParsingEmbedder();
        List<String> storyPaths = new StoryFinder().findPaths(codeLocationFromClass(this.getClass()), "**/bdd/parsing*.story", "");
        embedder.runStoriesAsPaths(storyPaths);
    }
}
TOP

Related Classes of bdd.ParsingTest

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.