Behat:如何测试具有依赖性的类?

时间:2019-02-13 10:26:23

标签: php dependencies behat

在Behat documentation中,我们得到一个包含shelfbasket类的简单示例:

public function __construct()
{
    $this->shelf = new Shelf();
    $this->basket = new Basket($this->shelf);
}

但是在现实世界的应用程序中,它几乎不会那么简单。在应用程序本身中,我将使用依赖项注入容器来自动解决依赖项。在Behat FeatureContext类中,如何通过模拟依赖关系来实现?

0 个答案:

没有答案