Codeception\Util\Fixtures
Really basic class to store data in global array and use it in Cests/Tests.
<?php Fixtures::add('user1', ['name' => 'davert']); Fixtures::get('user1'); Fixtures::exists('user1'); ?>
add()
public static add($name, $data)
cleanup()
public static cleanup($name = null)
exists()
public static exists($name)
get()
public static get($name)
© 2011 Michael Bodnarchuk and contributors
Licensed under the MIT License.
https://codeception.com/docs/reference/Fixtures