我使用Symfony2 BehatBundle,版本= v1.0.0,我想更改主要功能上下文文件的名称。现在,当我使用命令运行behat时:
app/console --env=test behat @NameOfMyBundle
使用文件src / NameOfMyBundle / Features / Context / FeatureContext.php
我想使用自定义主要功能文件,例如src / NameOfMyBundle / Features / Context / MyCustomContext.php ,但我不知道如何。根据{{3}}:
按照惯例,上下文类应该被称为FeatureContext,但这可以通过cli配置轻松更改。
但是,无法找到此配置选项。我试过像:
app/console --env=test behat @NameOfMyBundle --context "MyCustomContext"
但它失败了。
有谁知道如何更改此主要功能上下文文件(最好使用cli)?
谢谢!
答案 0 :(得分:1)