UserTest.php 293 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
{
	protected function setUp()
	{
11
		parent::setUp();
12 13
		// uncomment the following to load fixtures for table tbl_user
		//$this->loadFixtures(['tbl_user']);
Mark committed
14 15
	}

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