123456789101112131415161718192021 |
- <?php
- namespace Tests\Channel\Http\Controllers;
- use Modules\Channel\Http\Controllers\PayTemplateController;
- use PHPUnit\Framework\TestCase;
- use Tests\UsedTestCase;
- class PayTemplateControllerTest extends UsedTestCase
- {
- public function testIndex()
- {
- $res = $this->withHeaders([
- 'Authorization' => 'Bearer '. $this->token,
- ])->json('get','http://localhost/api/channel/paytemplate/list', [
- ]);
- $res->dump();
- }
- }
|