我只是在用 phpunit 测试我的 laravel 应用程序当我运行vendor/bin/phpunit
时出现如下错误Error: Call to undefined method ExampleTest::assertStatus()
下面是我试图执行的代码
$response = $this->json('POST', '/users', ['customer_name' => 'Ratke-Harris']);
$response
->assertStatus(200)
->assertExactJson([
'created' => true,
]);
根据 laravel docs ,即使在那里他们也提到了相同的例子。我不明白为什么它会抛出错误。
有任何想法吗 ?请。