ExtensionWechatUserEntityTest.php 271 B

1234567891011121314
  1. <?php
  2. declare(strict_types=1);
  3. namespace SixShop\Wechat\Entity;
  4. use PHPUnit\Framework\TestCase;
  5. class ExtensionWechatUserEntityTest extends TestCase
  6. {
  7. public function testGetUserInfo()
  8. {
  9. app(ExtensionWechatUserEntity::class)->getUserID('code');
  10. }
  11. }