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)

See source

cleanup()

public static cleanup($name = null)

See source

exists()

public static exists($name)

See source

get()

public static get($name)

See source

© 2011 Michael Bodnarchuk and contributors
Licensed under the MIT License.
https://codeception.com/docs/reference/Fixtures