Logo white

Administrator / test_3

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • test_3
  • frontend
  • test
  • unit
  • models
  • UserInfoTest.php
  • Commit
    76627175
    Yarik authored
    2016-06-16 16:24:45 +0300  
    Browse Code ยป
UserInfoTest.php 330 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<?php

    namespace frontend\test\unit\models;
    
    use frontend\test\UserInfoFixture;
    use yii\codeception\DbTestCase;

    class UserInfoTest extends DbTestCase
    {
        public function fixtures()
        {
            return [
                'infos' => UserInfoFixture::className(),
            ];
        }
    }