phpmyadmin/test/engines/PMA_StorageEngine_binlog_test.php
Hugues Peccatte db23a9bf8a PHPCS and PHPdoc updates.
Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
2014-03-13 21:40:39 +01:00

67 lines
1.3 KiB
PHP

<?php
/**
* Tests for PMA_StorageEngine_binlog
*
* @package PhpMyAdmin-test
*/
/*
* Include to test.
*/
require_once 'libraries/StorageEngine.class.php';
require_once 'libraries/engines/binlog.lib.php';
require_once 'libraries/database_interface.inc.php';
require_once 'libraries/Tracker.class.php';
/**
* Tests for PMA_StorageEngine_binlog
*
* @package PhpMyAdmin-test
*/
class PMA_StorageEngine_Binlog_Test extends PHPUnit_Framework_TestCase
{
/**
* @access protected
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*
* @access protected
* @return void
*/
protected function setUp()
{
$this->object = new PMA_StorageEngine_Binlog('binlog');
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*
* @access protected
* @return void
*/
protected function tearDown()
{
unset($this->object);
}
/**
* Test for getMysqlHelpPage
*
* @return void
*/
public function testGetMysqlHelpPage()
{
$this->assertEquals(
$this->object->getMysqlHelpPage(),
'binary-log'
);
}
}