1
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 的新手。欢迎任何帮助。谢谢

4

1 回答 1

0

是的,把它放在引导程序中。默认情况下,Behat 会查找bootstrap/FeatureContext.php它的引导文件,但这些方法应该进入您正在使用的扩展类的任何引导类BehatContext

于 2011-07-23T00:43:32.863 回答