使用Behat 2.0,我应该把我的步骤放在哪里?
You can implement step definitions for undefined steps with these snippets:
/**
* @Given /^people enter (\d+)$/
*/
public function peopleEnter($argument1)
{
throw new Pending();
}
我应该把它放在 bootstrap.php 下吗?我真的很困惑我应该知道什么... 我想使用 oop 风格,而不是闭包。 我是 BDD 和 Behat 的新手。 欢迎任何帮助。 谢谢
You can implement step definitions for undefined steps with these snippets:
/**
* @Given /^people enter (\d+)$/
*/
public function peopleEnter($argument1)
{
throw new Pending();
}
Should I put it under bootstrap.php? I'm really confused what should I do know...
I want to use the oop style, not closures.
I'm new to BDD and Behat.
Any help is welcome.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,将其放入 Bootstrap 中。默认情况下,Behat 会查找
bootstrap/FeatureContext.php
作为其引导文件,但这些方法应该进入您正在使用的扩展BehatContext
的任何引导类。Yes, put it in the Bootstrap. By default, Behat looks for
bootstrap/FeatureContext.php
as its bootstrap file, but these methods should go into whatever bootstrap class you're using that extendsBehatContext
.