我正在测试用例中发送发布请求,我想断言一个特定的元素,比方说在响应中存在键“ x”。在这种情况下,我不能说seeJson(['x' => whatever]);,因为该值对我来说是未知的。当然,我不能使用seeJson(['x']);来做到这一点。

有办法解决吗?

如果重要:
Laravel:v5.2.31
PHPUnit:5.3.4

最佳答案

希望它对其他人有帮助。您可以为您的检查响应json结构编写此测试

$this->post('/api/login/', [
        'email' => '[email protected]',
        'password' => '123123123',
    ])->assertJsonStructure([
        'status',
        'result' => [
            'id',
            'email',
            'full_name',
        ],
    ]);

08-04 20:31