static-php-cli/tests/SPC/doctor/CheckListHandlerTest.php

23 lines
386 B
PHP
Raw Normal View History

2023-09-09 10:04:20 +02:00
<?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();
2023-10-15 13:25:26 +08:00
$id = $list->runChecks();
$this->assertCount(7, $id);
2023-09-09 10:04:20 +02:00
}
}