14 lines
247 B
PHP
14 lines
247 B
PHP
<?php
|
|
namespace App\Domains\Card\Tests\Services;
|
|
|
|
use App\Core\TestCase;
|
|
use App\Domains\Card\Services\CardService;
|
|
|
|
class CardServiceTest extends TestCase
|
|
{
|
|
public function testCardServiceTest()
|
|
{
|
|
$this->assertTrue(true);
|
|
}
|
|
}
|