mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-03-18 05:04:51 +08:00
20 lines
296 B
PHP
20 lines
296 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tests\ZM\Utils;
|
|
|
|
use Tests\TestCase;
|
|
use ZM\Utils\ZMUtil;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
class ZMUtilTest extends TestCase
|
|
{
|
|
public function testComposer()
|
|
{
|
|
$this->assertEquals('zhamao/framework', ZMUtil::getComposerMetadata()['name']);
|
|
}
|
|
}
|