Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Table of Contents
excludeContents:
stylecircle
separatorbraces

Example Project

Link to a complete working - example project.

1. Install plugin client library

...

Code Block
languagejava
    @Test
    public void run() throws Throwable {

        Embedder embedder = configuredEmbedder();

        try {
            embedder.runStoriesAsPaths(storyPaths());
        } finally {
            // report step docs
            List<CandidateSteps> candidateSteps = embedder.stepsFactory().createCandidateSteps();
            embedder.reportStepdocs(configuration(), candidateSteps);
        }
    }

Example Project

...