mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2026-06-08 04:48:10 +08:00
14 lines
301 B
PHP
14 lines
301 B
PHP
<?php
|
|
|
|
namespace think\admin\tests;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use think\admin\model\SystemUser;
|
|
|
|
class ModelTest extends TestCase
|
|
{
|
|
public function testVirtualModel()
|
|
{
|
|
$this->assertEquals(m('SystemUser')->getTable(), SystemUser::mk()->getTable(), '动态模型测试');
|
|
}
|
|
} |