16 lines
333 B
PHP
Executable File
16 lines
333 B
PHP
Executable File
<?php
|
|
/**
|
|
* Here you can initialize variables via \Codeception\Util\Fixtures class
|
|
* to store data in global array and use it in Cepts.
|
|
*
|
|
* ```php
|
|
* // Here _bootstrap.php
|
|
* \Codeception\Util\Fixtures::add('user1', ['name' => 'davert']);
|
|
* ```
|
|
*
|
|
* In Cept
|
|
*
|
|
* ```php
|
|
* \Codeception\Util\Fixtures::get('user1');
|
|
* ```
|
|
*/ |