0
我只是在測試我的laravel應用程序使用PHPUnit 當我運行vendor/bin/phpunit
我收到錯誤,如下面Error: Call to undefined method ExampleTest::assertStatus()
Laravel PHP單元測試
下面是代碼我試圖執行
$response = $this->json('POST', '/users', ['customer_name' => 'Ratke-Harris']);
$response
->assertStatus(200)
->assertExactJson([
'created' => true,
]);
按laravel文檔,即使在那裏他們也提到了相同的例子。我不明白它爲什麼會拋出錯誤。
任何想法?請。