phpmyadmin/tests/unit/Engines/BinlogTest.php
Kamil Tekiela 90caa57986 Remove all unnecessary tearDown
Signed-off-by: Kamil Tekiela <tekiela246@gmail.com>
2026-02-19 22:24:48 +00:00

40 lines
889 B
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Engines;
use PhpMyAdmin\Dbal\DatabaseInterface;
use PhpMyAdmin\Engines\Binlog;
use PhpMyAdmin\Tests\AbstractTestCase;
use PHPUnit\Framework\Attributes\CoversClass;
#[CoversClass(Binlog::class)]
class BinlogTest extends AbstractTestCase
{
protected Binlog $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp(): void
{
parent::setUp();
DatabaseInterface::$instance = $this->createDatabaseInterface();
$this->object = new Binlog('binlog');
}
/**
* Test for getMysqlHelpPage
*/
public function testGetMysqlHelpPage(): void
{
self::assertSame(
$this->object->getMysqlHelpPage(),
'binary-log',
);
}
}