未在Codeception功能测试中加载的相关实体

时间:2018-07-18 13:00:46

标签: symfony doctrine-orm functional-testing codeception

我正在使用Codeception测试启用了Doctrine2模块的Symfony 3.4项目。

问题是我无法通过调用grabEntityFromRepository()函数访问收到的实体上的相关实体。所以,如果我这样做:

$person = $I->grabEntityFromRepository('AppBundle:Person', ['id' => 1]);
$address = $person->getAddress(); // Address is a one to one related entity to person

$address变量为NULL。

这是预期的行为还是可以在某个地方的配置中对其进行调整?

0 个答案:

没有答案