OutFeeTest.php 361 B

123456789101112131415161718192021
  1. <?php
  2. namespace App\Module\UrsPromotion\Test;
  3. use App\Module\UrsPromotion\Services\UrsTransferFeeService;
  4. use Tests\TestCase;
  5. class OutFeeTest extends TestCase
  6. {
  7. public function testA()
  8. {
  9. $user_id = 39105 ;
  10. $transferFeeRate = UrsTransferFeeService::getBestFeeRateForUser($user_id, 'out');
  11. dump($transferFeeRate);
  12. }
  13. }