SpecFlow可重复使用的步骤定义

时间:2011-03-08 03:36:29

标签: c# bdd specflow

有没有办法让SpecFlow重用步骤定义?

在其他工具中,我使用了包含

等方法的GivenWhenThen基类

WhenAnOrderIsCreated - 这会通过继承类来使用受保护的订单成员。

似乎无法使用SpecFlow(似乎不喜欢继承)

有没有办法分享各个功能的步骤?

非常感谢

1 个答案:

答案 0 :(得分:26)

为什么是可能的 - 查看步骤功能(https://specflow.org/documentation/Calling-Steps-from-Step-Definitions/

中的调用步骤

简而言之,您创建了一个继承自以下步骤的步骤定义类:

[Binding]
public class CallingStepsFromStepDefinitionSteps : Steps
{}

然后你可以简单地调用这样的其他步骤:

[Given(@"I am logged in")]
public void GivenIAmLoggedIn()
{
     Given("I am on the index page");
     When("I enter my unsername nad password");
     And("I click the login button");
     incStepCount();
}

我希望我能正确理解你的问题并且这是对它的回答