mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-08-29 21:00:39 +08:00
13 lines
No EOL
205 B
PHP
13 lines
No EOL
205 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
final class SuiteCommandTest extends TestCase
|
|
{
|
|
public function testSuiteCommand(): void
|
|
{
|
|
$this->assertTrue(true);
|
|
}
|
|
} |