for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Kaliop\eZMigrationBundle\Tests\phpunit\Core;
use Doctrine\DBAL\DriverManager;
class BundleMigrationDBTestCase extends BundleMigrationTestCase
{
protected $connection;
public function setUp()
$this->connection = DriverManager::getConnection( array( 'driver' => 'pdo_sqlite', 'memory' => true ) );
}