| 12345678910111213141516171819 |
- <?php
- declare(strict_types=1);
- namespace SixShop\TencentCloudSms;
- use PHPUnit\Framework\TestCase;
- class SmsClientTest extends TestCase
- {
- protected SmsClient $smsClient;
- protected function setUp(): void
- {
- $this->smsClient = app()->make(SmsClient::class);
- }
- public function testSendSms():void
- {
- $resp = $this->smsClient->sendSms('13724018360', '2516637', '123456');
- dump($resp);
- }
- }
|