UserTest.php 315 Bytes
Newer Older
Mark committed
1 2 3 4
<?php

namespace tests\unit\models;

5
use yii\codeception\TestCase;
Mark committed
6

7
class UserTest extends TestCase
Mark committed
8
{
9 10 11
    protected function setUp()
    {
        parent::setUp();
12 13
        // uncomment the following to load fixtures for user table
        //$this->loadFixtures(['user']);
14
    }
Mark committed
15

16
    // TODO add test methods here
Mark committed
17
}