UserTest.php 338 B

1234567891011121314151617181920
  1. <?php
  2. namespace tests\unit\models;
  3. use yii\codeception\TestCase;
  4. use yii\test\DbTestTrait;
  5. class UserTest extends TestCase
  6. {
  7. use DbTestTrait;
  8. protected function setUp()
  9. {
  10. parent::setUp();
  11. // uncomment the following to load fixtures for table tbl_user
  12. //$this->loadFixtures(['tbl_user']);
  13. }
  14. // TODO add test methods here
  15. }