vd/app/Domains/Sms/Tests/Services/SmsServiceTest.php
2018-12-10 18:54:06 +08:00

14 lines
242 B
PHP
Executable File

<?php
namespace App\Domains\Sms\Tests\Services;
use App\Core\TestCase;
use App\Domains\Sms\Services\SmsService;
class SmsServiceTest extends TestCase
{
public function testSmsServiceTest()
{
$this->assertTrue(true);
}
}