All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.telekom.test.bddwebapp.interaction.StoryInteraction Maven / Gradle / Ivy

There is a newer version: 3.2
Show newest version
package de.telekom.test.bddwebapp.interaction;

import org.springframework.stereotype.Component;

/**
 * Holds context variables that are needed in the entire JBehave Story.
 * 

* An Interaction is a spring bean which keeps ThreadLocal state information of a single specification execution available across different steps. The * Interaction is setup and torn down before and after every specification execution. * * @author Daniel Keiss {@literal } *

* Copyright (c) 2018 Daniel Keiss, Deutsche Telekom AG * This file is distributed under the conditions of the Apache License, Version 2.0. * For details see the file license on the toplevel. */ @Component public class StoryInteraction extends FlatInteraction { private ScenarioInteraction scenarioInteraction; /** * Store some data from scenario interaction to the story interaction context for later use. */ public void rememberFromScenarioInteraction(String key) { super.remember(key, scenarioInteraction.recallNotNull(key)); } /** * Store an object from scenario interaction for an specific entity in the story interaction context for later use. Recall this object with recallObject(). */ public void rememberObjectFromScenarioInteraction(String entityKey, String objectKey) { super.rememberObject(entityKey, objectKey, scenarioInteraction.recallObjectNotNull(entityKey, objectKey)); } public void setScenarioInteraction(ScenarioInteraction sequenceInteraction) { this.scenarioInteraction = sequenceInteraction; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy