for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Yiisoft\ActiveRecord\Tests\Driver\Mysql;
use Yiisoft\ActiveRecord\Tests\Support\MysqlHelper;
final class ActiveQueryTest extends \Yiisoft\ActiveRecord\Tests\ActiveQueryTest
{
public function setUp(): void
parent::setUp();
$mysqlHelper = new MysqlHelper();
$this->db = $mysqlHelper->createConnection();
}
protected function tearDown(): void
parent::tearDown();
$this->db->close();
unset($this->db);