Package org.jbehave.core.io

Examples of org.jbehave.core.io.StoryLocation


            this.name = story.getName();
            this.path = story.getPath();
            this.passed = passed;
            this.pending = pending;
            this.html = storyReporterBuilder.pathResolver().resolveName(
                    new StoryLocation(storyReporterBuilder.codeLocation(), story.getPath()), "html");
        }
View Full Code Here


            return new PostStoryStatisticsCollector(factory.createPrintStream());
        }
    }

    protected FilePrintStreamFactory filePrintStreamFactory(String storyPath) {
        return new FilePrintStreamFactory(new StoryLocation(codeLocation, storyPath), fileConfiguration(""));
    }
View Full Code Here

TOP

Related Classes of org.jbehave.core.io.StoryLocation

Copyright © 2018 www.massapicom. 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.