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