mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-23 12:10:54 +08:00
21 lines
338 B
PHP
21 lines
338 B
PHP
<?php
|
|
|
|
namespace tests\unit\models;
|
|
|
|
use yii\codeception\TestCase;
|
|
use yii\test\DbTestTrait;
|
|
|
|
class UserTest extends TestCase
|
|
{
|
|
use DbTestTrait;
|
|
|
|
protected function setUp()
|
|
{
|
|
parent::setUp();
|
|
// uncomment the following to load fixtures for table tbl_user
|
|
//$this->loadFixtures(['tbl_user']);
|
|
}
|
|
|
|
// TODO add test methods here
|
|
}
|