| 123456789101112131415161718192021222324252627 |
- <?php
- namespace tests\unit\models;
- #use yii\test\DbTestTrait;
- class UserTest extends \PHPUnit_Framework_TestCase
- {
- use DbTestTrait;
- protected function setUp()
- {
- /*
- * you can load fixtures in this way
- *
- $this->loadFixtures([
- 'tbl_user',
- ]);
- */
- }
- protected function tearDown()
- {
- }
- }
|