2013-12-02 19:25:21 +08:00
|
|
|
<?php
|
|
|
|
|
2014-08-24 18:14:35 +08:00
|
|
|
namespace tests\codeception\unit\models;
|
2013-12-02 19:25:21 +08:00
|
|
|
|
2013-12-17 07:27:33 +08:00
|
|
|
use yii\codeception\TestCase;
|
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
|
|
|
{
|
2014-03-16 12:46:16 +08:00
|
|
|
protected function setUp()
|
|
|
|
{
|
|
|
|
parent::setUp();
|
2014-03-30 23:33:46 +08:00
|
|
|
// uncomment the following to load fixtures for user table
|
|
|
|
//$this->loadFixtures(['user']);
|
2014-03-16 12:46:16 +08:00
|
|
|
}
|
2013-12-02 19:25:21 +08:00
|
|
|
|
2014-03-16 12:46:16 +08:00
|
|
|
// TODO add test methods here
|
2013-12-02 19:25:21 +08:00
|
|
|
}
|