我使用laravel5进行PHPUnit测试,
当我使用" GET"时,我得到了正确的状态代码方法,
$this->call('GET','admin');
$this->assertResponseOk(); //Status Code: 200
如果我试图通过" POST"来获取页面的状态代码。方法,
$param = [
'id' => 2
];
$this->call('POST', 'shopping/remove', array(), array(), array(),array(), $param);
$this->assertResponseOk(); //Status Code: 500
我的代码怎么了??
我想做POST级别提交测试...