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