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

org.testmonkeys.cucumber.spring.logback.CucumberScenarioContext Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package org.testmonkeys.cucumber.spring.logback;

import io.cucumber.java.Scenario;
import io.cucumber.spring.ScenarioScope;
import org.springframework.stereotype.Component;

/**
 * CucumberScenarioContext is a holder for the current Cucumber Scenario object
 * 

* current scenario should be assigned in before hooks */ @Component @ScenarioScope public class CucumberScenarioContext { private Scenario currentScenario; public Scenario getCurrentScenario() { return currentScenario; } public void setCurrentScenario(Scenario scenario) { currentScenario = scenario; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy