mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-03-17 20:54:52 +08:00
14 lines
248 B
PHP
14 lines
248 B
PHP
<?php
|
|
|
|
namespace Tests\ZM\Utils;
|
|
|
|
use ZM\Utils\ZMUtil;
|
|
|
|
class ZMUtilTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
public function testComposer()
|
|
{
|
|
$this->assertEquals('zhamao/framework', ZMUtil::getComposerMetadata()['name']);
|
|
}
|
|
}
|