使用Behat 2.0,我应该把我的步骤放在哪里?

发布于 2024-11-19 04:01:20 字数 311 浏览 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

捂风挽笑 2024-11-26 04:01:20

是的,将其放入 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 extends BehatContext.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文