LevelTest.php 311 B

12345678910111213141516171819
  1. <?php
  2. namespace App\Module\UrsPromotion\Test;
  3. use App\Module\UrsPromotion\Services\UrsTalentService;
  4. use Tests\TestCase;
  5. class LevelTest extends TestCase
  6. {
  7. public function test1()
  8. {
  9. $user_id = 39113 ;
  10. $info = UrsTalentService::getTalentInfo($user_id);
  11. dump($info);
  12. }
  13. }