Test1.php 338 B

1234567891011121314151617181920212223
  1. <?php
  2. use App\Module\ThirdParty\Services\WebhookDispatchService;
  3. use Illuminate\Support\Facades\Request;
  4. use Tests\TestCase;
  5. /**
  6. *
  7. * ./vendor/bin/phpunit app/Module/ThirdParty/Tests/TestChongzhi.php
  8. */
  9. class Test1 extends TestCase
  10. {
  11. public function testA()
  12. {
  13. dump(0.2588);
  14. dump((float)'0.2588');
  15. }
  16. }