PayTemplateControllerTest.php 470 B

123456789101112131415161718192021
  1. <?php
  2. namespace Tests\Channel\Http\Controllers;
  3. use Modules\Channel\Http\Controllers\PayTemplateController;
  4. use PHPUnit\Framework\TestCase;
  5. use Tests\UsedTestCase;
  6. class PayTemplateControllerTest extends UsedTestCase
  7. {
  8. public function testIndex()
  9. {
  10. $res = $this->withHeaders([
  11. 'Authorization' => 'Bearer '. $this->token,
  12. ])->json('get','http://localhost/api/channel/paytemplate/list', [
  13. ]);
  14. $res->dump();
  15. }
  16. }