Examples of Narrative


Examples of org.jbehave.core.story.domain.Narrative

import com.sirenian.hellbound.stories.util.HellboundStoryBase;

public class TheGlyphMovesAsTimePasses extends HellboundStoryBase {

  public TheGlyphMovesAsTimePasses() {
    super(new Narrative("game player", "the glyph to move downwards as time passes", "the game is a challenge"));
  }
View Full Code Here

Examples of org.jbehave.core.story.domain.Narrative

import org.jbehave.core.story.domain.ScenarioDrivenStory;

public class FailingStoryClass extends ScenarioDrivenStory {

    public FailingStoryClass() {
        super(new Narrative("", "", ""));
    }
View Full Code Here

Examples of org.jbehave.core.story.domain.Narrative

    private boolean wasNarrated;

    public void addListener(BehaviourListener listener) {}

    public Narrative narrative() {
        return new Narrative("", "", "");
    }
View Full Code Here

Examples of org.jbehave.core.story.domain.Narrative

    private boolean wasNarrated;

    public void addListener(BehaviourListener listener) {}

    public Narrative narrative() {
        return new Narrative("", "", "");
    }
View Full Code Here

Examples of org.jbehave.core.story.domain.Narrative

    public static String FIRST_SCENARIO_NAME = "PlainTextRenderer works";

    public static String SECOND_SCENARIO_NAME = "PlainTextRenderer still works";

    public SimpleStory() {
        super(new Narrative(ROLE, FEATURE, BENEFIT));
    }
View Full Code Here

Examples of org.jbehave.core.story.domain.Narrative

        this.rootPackageName = rootPackageName;
        this.classLoader = classLoader;
        }   

    public Story story(){
        ScenarioDrivenStory story = new ScenarioDrivenStory(new Narrative(details.role, details.feature, details.benefit)) {
            public void specify() {
                for ( Iterator i = details.scenarios.iterator(); i.hasNext(); ){
                    addScenario(scenario((ScenarioDetails)i.next(), details.name));
                }
            }
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.