CommonConfigServiceTest.php 349 B

1234567891011121314151617
  1. <?php
  2. namespace Tests\Common\Services;
  3. use Modules\Common\Services\CommonConfigService;
  4. use PHPUnit\Framework\TestCase;
  5. use Tests\UsedTestCase;
  6. class CommonConfigServiceTest extends UsedTestCase
  7. {
  8. public function testGetFirstPageListTypeMap()
  9. {
  10. $res = CommonConfigService::getFirstPageListTypeMap();
  11. dump($res);
  12. }
  13. }