5
路線Laravel 5的PHPUnit - 無效JSON從路線
Route::group(array('prefix' => 'api'), function() {
Route::resource('test', 'TestController', array('only' => array('index', 'store', 'destroy', 'show', 'update')));
});
控制器
public function store(Request $request) {
return response()->json(['status' => true]);
}
單元類
public function testBasicExample() {
$this->post('api/test')->seeJson(['status' => true]);
}
P返回HPUnit結果:
1)ExampleTest::testBasicExample
無效的JSON從路線返回。
也許引發了一個異常?任何人都看到問題?
啊,謝謝。作品:D – Cas
有沒有辦法看到拋出的異常? – whiterook6
查看例外情況: $ this-> json('POST','api/test'); dd($ this-> response-> getContent()); – Aine