UserTest.php 313 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace tests\unit\models;
  3. #use yii\test\DbTestTrait;
  4. class UserTest extends \PHPUnit_Framework_TestCase
  5. {
  6. use DbTestTrait;
  7. protected function setUp()
  8. {
  9. /*
  10. * you can load fixtures in this way
  11. *
  12. $this->loadFixtures([
  13. 'tbl_user',
  14. ]);
  15. */
  16. }
  17. protected function tearDown()
  18. {
  19. }
  20. }