mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-03-17 20:34:51 +08:00
22 lines
367 B
PHP
22 lines
367 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace SPC\Tests\doctor;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use SPC\doctor\CheckListHandler;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
final class CheckListHandlerTest extends TestCase
|
|
{
|
|
public function testRunChecksReturnsListOfCheck(): void
|
|
{
|
|
$list = new CheckListHandler();
|
|
|
|
$this->assertCount(6, $list->runChecks());
|
|
}
|
|
}
|