object = new ExportPluginProperties(); } /** * tearDown for test cases * * @return void */ public function tearDown() { unset($this->object); } /** * Test for PMA\libraries\properties\plugins\ExportPluginProperties::getItemType * * @return void */ public function testGetItemType() { $this->assertEquals( 'export', $this->object->getItemType() ); } /** * Test for * - PMA\libraries\properties\plugins\ExportPluginProperties::getForceFile * - PMA\libraries\properties\plugins\ExportPluginProperties::setForceFile * * @return void */ public function testSetGetForceFile() { $this->object->setForceFile(true); $this->assertTrue( $this->object->getForceFile() ); } }