stub = $this->getMockForAbstractClass('PluginPropertyItem'); } /** * tearDown for test cases * * @return void */ public function tearDown() { unset($this->stub); } /** * Test for PluginPropertyItem::getPropertyType * * @return void */ public function testGetPropertyType() { $this->assertEquals( "plugin", $this->stub->getPropertyType() ); } } ?>