Examples of StoryFinder


Examples of org.jbehave.core.io.StoryFinder

        mojo.sourceDirectory = searchInDirectory;
        List<String> includes = asList("**/stories/*.java");
        mojo.includes = includes;
        List<String> excludes = asList();
        mojo.excludes = excludes;
        List<String> classNames = new StoryFinder().findClassNames(searchInDirectory, includes, excludes);

        // When
        doThrow(new RuntimeException()).when(embedder).runStoriesWithAnnotatedEmbedderRunner(classNames);
        mojo.execute();

View Full Code Here

Examples of org.jbehave.core.io.StoryFinder

  }

  protected Map<String, Resource> createIndexFromPaths(String rootURI,
      String rootPath, String syntax, String includes) {
    Map<String, Resource> index = new HashMap<String, Resource>();
    List<String> paths = new StoryFinder().findPaths(
        codeLocationFromPath(rootPath), includes, EMPTY);
    for (String path : paths) {
      addPath(rootURI, rootPath, fullPath(rootPath, path), syntax, index);
    }
    return index;
View Full Code Here

Examples of org.jbehave.core.io.StoryFinder

        return new InstanceStepsFactory(configuration(), new GoogleSteps());
    }

    @Override
    protected List<String> storyPaths() {
        return new StoryFinder().findPaths(codeLocationFromClass(this.getClass()), "**/*.story", "");
    }
View Full Code Here

Examples of org.jbehave.core.io.StoryFinder

        return new InstanceStepsFactory(configuration(), new GherkinSteps());
    }

    @Override
    protected List<String> storyPaths() {
        return new StoryFinder().findPaths(codeLocationFromClass(this.getClass()), "**/*.feature", "");
    }
View Full Code Here

Examples of org.jbehave.core.io.StoryFinder

    @Test
    public void runURLLoadedStoriesAsJUnit() {
        // Embedder defines the configuration and candidate steps
        Embedder embedder = new URLCoreEmbedder();
        String codeLocation = codeLocationFromClass(this.getClass()).getFile();
        List<String> storyPaths = new StoryFinder().findPaths(codeLocation, asList(
                "**/trader_is_alerted_of_status.story", "**/traders_can_be_subset.story"), null, "file:"
                + codeLocation);
        embedder.runStoriesAsPaths(storyPaths);
    }
View Full Code Here

Examples of org.jbehave.core.io.StoryFinder

    public void run() {
        injectedEmbedder().runStoriesAsPaths(storyPaths());
    }

    protected List<String> storyPaths() {
        return new StoryFinder()
                .findPaths(codeLocationFromClass(this.getClass()).getFile(), asList("**/*.story"), null);
    }
View Full Code Here

Examples of org.jbehave.core.io.StoryFinder

     * find story files from classes dir (when running inside IDE)
     * or from jar file (supported starting with 3.7.5)
     */
    @Override
    protected List<String> storyPaths() {
        return new StoryFinder().findPaths(CodeLocations.codeLocationFromClass(getClass()),
                "**/*.story", "");
    }
View Full Code Here

Examples of org.jbehave.core.io.StoryFinder

                .useStoryReporterBuilder(new StoryReporterBuilder().withFormats(ANSI_CONSOLE));
    }

    @Override
    protected List<String> storyPaths() {
        return new StoryFinder()
                .findPaths(codeLocationFromClass(this.getClass()), "**/*.story", "");
    }
View Full Code Here

Examples of org.jbehave.core.io.StoryFinder

    public void run() {
        injectedEmbedder().runStoriesAsPaths(storyPaths());
    }

    protected List<String> storyPaths() {
        return new StoryFinder().findPaths(codeLocationFromPath("../core/src/main/java"), "**/*.story", "");
    }
View Full Code Here

Examples of org.jbehave.core.io.StoryFinder

    @Override
    protected List<String> storyPaths() {
        // Specify story paths as URLs
        String codeLocation = codeLocationFromPath("../core/src/main/java").getFile();
        return new StoryFinder().findPaths(codeLocation, asList("**/trader_is_alerted_of_status.story",
                "**/traders_can_be_subset.story"), asList(""), "file:" + codeLocation);
    }
View Full Code Here
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.