标签: laravel
我想在修补程序中访问我的api,如下面的PHPUnit
public function testBasicExample() { // like that,visit my api and get a response $response = $this->json('POST', '/user', ['name' => 'Sally']); ... }
但我不知道该怎么做,我可以在关于修补的文档中找到this。
请帮助
由于