zhamao-framework/tests/ZM/Utils/ZMUtilTest.php

20 lines
296 B
PHP
Raw Normal View History

<?php
2022-08-21 16:08:20 +08:00
declare(strict_types=1);
namespace Tests\ZM\Utils;
2022-12-23 17:16:08 +08:00
use Tests\TestCase;
use ZM\Utils\ZMUtil;
2022-08-21 16:08:20 +08:00
/**
* @internal
*/
class ZMUtilTest extends TestCase
{
public function testComposer()
{
$this->assertEquals('zhamao/framework', ZMUtil::getComposerMetadata()['name']);
}
}