2013-12-02 19:25:21 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace tests\unit\models;
|
|
|
|
|
2013-12-17 07:27:33 +08:00
|
|
|
use yii\codeception\TestCase;
|
|
|
|
use yii\test\DbTestTrait;
|
2013-12-02 19:25:21 +08:00
|
|
|
|
2013-12-17 07:27:33 +08:00
|
|
|
class UserTest extends TestCase
|
2013-12-02 19:25:21 +08:00
|
|
|
{
|
|
|
|
use DbTestTrait;
|
|
|
|
|
|
|
|
protected function setUp()
|
|
|
|
{
|
2013-12-03 15:07:36 +08:00
|
|
|
parent::setUp();
|
2013-12-17 07:27:33 +08:00
|
|
|
// uncomment the following to load fixtures for table tbl_user
|
|
|
|
//$this->loadFixtures(['tbl_user']);
|
2013-12-02 19:25:21 +08:00
|
|
|
}
|
|
|
|
|
2013-12-17 07:27:33 +08:00
|
|
|
// TODO add test methods here
|
2013-12-02 19:25:21 +08:00
|
|
|
}
|