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

namespace tests\unit\models;

5 6
use yii\codeception\TestCase;
use yii\test\DbTestTrait;
Mark committed
7

8
class UserTest extends TestCase
Mark committed
9 10 11 12 13
{
	use DbTestTrait;

	protected function setUp()
	{
14
		parent::setUp();
15 16
		// uncomment the following to load fixtures for table tbl_user
		//$this->loadFixtures(['tbl_user']);
Mark committed
17 18
	}

19
	// TODO add test methods here
Mark committed
20
}