How to get scenario name from a scenario outline in cucumber using java(如何使用java从黄瓜中的场景大纲中获取场景名称)
问题描述
假设我有一个测试用例 -
Suppose I have a test case like -
*Scenario: Facebook login test
GIVEN I am a Facebook user
WHEN I enter my user name & password
THEN login should be successful*
如何从我是 Facebook 用户"或我输入用户名和密码"或登录应该成功"对应的步骤定义方法中获取场景名称?
How could I get the scenario name from the step definition methods corresponding to "I am a Facebook user" or "I enter my user name & password" or "login should be successful" ?
步骤定义方法是 -
@Given("^I am a Facebook user$")
public void method1() {
//some coding
//I want to get the scenario name here
}
@When("^I enter my user name & password$")
public void method2() {
//some coding
//I want to get the scenario name here
}
@Then("^login should be successful$")
public void method3() {
//some coding
//I want to get the scenario name here
}
推荐答案
没有@Bappa,这是可能的,虽然你的 stepdefinition 类是单例的并且你的测试是并行的,但是通过使用线程增强它来查看它被下面的方法攻击 -用于存储的安全静态哈希映射变量:
No @Bappa, it's possible, though your stepdefinition class is singleton and your tests are in parallel, see it be attacked with below approach by enhancing it with thread-safe static hash map variable used for storage:
public class StepDefinitions{
private static HashMap<Integer,String> scenarios;
public StepDefinitions(){ //or even inside of your singleton's getInstance();
if(scenarios == null)
scenarios = new HashMap<Integer,String();
}
@Before
public void beforeHook(Scenario scenario) {
addScenario(scenario.getName());
}
@When("your step definition")
public void stepDefinition1(){
String scenario = getScenario(); //problem-o-solved here...
}
private void addScenario(String scenario){
Thread currentThread = Thread.currentThread();
int threadID = currentThread.hashCode();
scenarios.put(threadID,scenario);
}
private synchronized String getScenario(){
Thread currentThread = Thread.currentThread();
int threadID = currentThread.hashCode();
return scenarios.get(threadID);
}
这篇关于如何使用java从黄瓜中的场景大纲中获取场景名称的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用java从黄瓜中的场景大纲中获取场景名称
基础教程推荐
- 如何强制对超级方法进行多态调用? 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- 在螺旋中写一个字符串 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01