PHP code example of intraworlds / phpunit-db-fixtures
1. Go to this page and download the library: Download intraworlds/phpunit-db-fixtures library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
intraworlds / phpunit-db-fixtures example snippets
use IW\PHPUnit\DbFixtures\DbFixturesTrait;
use IW\PHPUnit\DbFixtures\Fixtures;
final class MyTest extends TestCase
{
use DbFixturesTrait;
// returns connections to your DB, implementation is up to you, a singleton should be returned probably
protected function getConnections(string $connectionName): array {
return match ($connectionName) {
// key is name of DB, use it for distinction between multiple DBs
'mysql' => new \PDO(...),
'elastic' => new Elasticsearch\Client(...),
};
}
#[Fixtures('mysql', 'read-only', 'fixtures.yml')]
public function testWithFixtures() {
// before test data from fixtures.yml will be loaded into mysql
}
}