绑定中的多个范围值 (Specflow)

Multiple Scope value in Binding (Specflow)

我有一个方法在这样的功能之前运行,

[BeforeFeature, Scope(Feature = "Feature1"]
Method()
{
}

我希望将相同的方法 运行 用于我编写的另一个功能文件,即 Feature2

如何在范围绑定中合并此 "Feature2"?

我试过了

[BeforeFeature, Scope(Feature = "Feature1"]
[Scope(Feature="Feature2")]

但是没用。该方法仅针对 Feature1 运行,而不针对 Feature2

根据 scoping rules 多个 Scope 绑定将是 OR' 所以我希望第二个示例能够工作。您确定功能名称拼写正确吗?

我将尝试编写一个示例来验证此行为。