14 lines
273 B
PHP
14 lines
273 B
PHP
<?php
|
|
namespace App\Domains\Stats\Tests\Services;
|
|
|
|
use App\Core\TestCase;
|
|
use App\Domains\Stats\Services\CompanyCountService;
|
|
|
|
class CompanyCountServiceTest extends TestCase
|
|
{
|
|
public function testCompanyCountServiceTest()
|
|
{
|
|
$this->assertTrue(true);
|
|
}
|
|
}
|