領収証発行サービス
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

17 行
337B

  1. <?php
  2. namespace Tests\Feature;
  3. use App\Codes\HTTPResultCode;
  4. use Illuminate\Testing\TestResponse;
  5. use Tests\TestCase;
  6. abstract class TestCaseEx extends TestCase
  7. {
  8. protected function assertHttpResponseSuccess(TestResponse $response)
  9. {
  10. $this->assertEquals($response['result'], HTTPResultCode::SECCESS->value);
  11. }
  12. }