UserTest.php 293 B

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