我正在使用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。
这是预期的行为还是可以在某个地方的配置中对其进行调整?