我不明白......第一次测试phpunit
工作正常。
然后我添加了新的路线和新方法。
Route::get( '/about', 'HomeController@about' );
所以,我更改了ExampleTest中的行:
public function testBasicExample()
{
$response = $this->call('GET', '/about');
$this->assertEquals(200, $response->getStatusCode());
}
这给了我一个错误:
Failed asserting that 302 matches expected 200.
我做错了什么?
答案 0 :(得分:0)
public function testBasicExample()
{
$response = $this->call('GET', '/about')->response;
$this->assertEquals(200, $response->status());
}