'table1', 'engine' => 'table`2' ); } } $this->object = $this->getMockForAbstractClass('PMA_StorageEngine_binlog', array('dummy')); } /** * 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 */ public function testGetMysqlHelpPage(){ $this->assertEquals( $this->object->getMysqlHelpPage(), 'binary-log' ); } }