fix doctor phpunit test

This commit is contained in:
crazywhalecc 2023-10-22 22:16:20 +08:00
parent 99150e2cef
commit 5934e5e881
No known key found for this signature in database
GPG Key ID: 1F4BDD59391F2680

View File

@ -17,6 +17,8 @@ final class CheckListHandlerTest extends TestCase
$list = new CheckListHandler();
$id = $list->runChecks();
$this->assertCount(7, $id);
foreach ($id as $item) {
$this->assertInstanceOf('SPC\doctor\AsCheckItem', $item);
}
}
}