mirror of
https://github.com/yiisoft/yii2.git
synced 2026-03-12 02:09:48 +01:00
- Moved everything test-related into `tests` directory. Codeception tests are in `codeception`. - Removed database module since we're using fixtures and migrations. - Moved console entry points and bootstrap into `tests/codeception/bin`. - Adjusted travis build scripts. - Adjusted documentation to be consistent and reflect changes made.
11 lines
167 B
PHP
11 lines
167 B
PHP
<?php
|
|
|
|
namespace codeception\common\fixtures;
|
|
|
|
use yii\test\ActiveFixture;
|
|
|
|
class UserFixture extends ActiveFixture
|
|
{
|
|
public $modelClass = 'common\models\User';
|
|
}
|