CalculateOutFeeTest.php 531 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace App\Module\Transfer\Tests\Unit;
  3. use Tests\TestCase;
  4. class CalculateOutFeeTest extends TestCase
  5. {
  6. public function testA()
  7. {
  8. $app_id = 11;
  9. $farmUserId = 39113;
  10. $feeDto = \App\Module\Transfer\Services\TransferThirdPartyService::calculateWithdrawFeeWithContext(
  11. $app_id,
  12. 1,
  13. [ 'user_id' => $farmUserId ] // 传递农场用户ID,让URS推广模块能够根据房屋等级和达人等级计算手续费
  14. );
  15. dump($feeDto);
  16. }
  17. }