phpmyadmin/test/classes/Engines/BinlogTest.php
Maurício Meneghini Fauth 44fe103b9c
Remove @access annotations
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2021-12-22 11:43:45 -03:00

50 lines
1.0 KiB
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Engines;
use PhpMyAdmin\Engines\Binlog;
use PhpMyAdmin\Tests\AbstractTestCase;
/**
* @covers \PhpMyAdmin\Engines\Binlog
*/
class BinlogTest extends AbstractTestCase
{
/** @var Binlog */
protected $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();
$GLOBALS['server'] = 0;
$this->object = new Binlog('binlog');
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown(): void
{
parent::tearDown();
unset($this->object);
}
/**
* Test for getMysqlHelpPage
*/
public function testGetMysqlHelpPage(): void
{
$this->assertEquals(
$this->object->getMysqlHelpPage(),
'binary-log'
);
}
}