如何通过 BeforeFeature 中的学说访问我的数据库?我无法获得我的实体管理器,因为我的内核为空......这就是我正在尝试的:
/**
* @BeforeFeature
*/
public static function cleanDatabase(FeatureEvent $event)
{
$context = new FeatureContext(array());
$context->thereAreNoUsersInTheDatabase();
}
它告诉我无法从非对象(内核)获取容器。当我手动创建 FeatureContext 时,为什么 KernelAwareInterface 不分配内核?