| 12345678910111213141516171819 |
- <?php
- namespace App\Module\UrsPromotion\Test;
- use App\Module\UrsPromotion\Services\UrsTalentService;
- use Tests\TestCase;
- class LevelTest extends TestCase
- {
- public function test1()
- {
- $user_id = 39113 ;
- $info = UrsTalentService::getTalentInfo($user_id);
- dump($info);
- }
- }
|