You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?php
-
- namespace Tests\Feature;
-
- use App\Codes\HTTPResultCode;
- use Illuminate\Testing\TestResponse;
- use Tests\TestCase;
-
- abstract class TestCaseEx extends TestCase
- {
-
- protected function assertHttpResponseSuccess(TestResponse $response)
- {
- $this->assertEquals($response['result'], HTTPResultCode::SECCESS->value);
- }
- }
|