Package org.jbehave.core.story.listener

Examples of org.jbehave.core.story.listener.PlainTextScenarioListener


    public void run(Story story) {
        run(story, System.out);
    }

    public void run(Story story, PrintStream printStream) {
    PlainTextScenarioListener listener = new PlainTextScenarioListener(new OutputStreamWriter(printStream));
        story.addListener(listener);
        story.run();
        listener.printReport();
        succeeded = succeeded && !listener.hasBehaviourFailures();
    }
View Full Code Here

TOP

Related Classes of org.jbehave.core.story.listener.PlainTextScenarioListener

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.