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