stub = $this->getMockForAbstractClass(PluginPropertyItem::class); } /** * tearDown for test cases */ protected function tearDown(): void { parent::tearDown(); unset($this->stub); } public function testGetPropertyType(): void { $this->assertEquals( 'plugin', $this->stub->getPropertyType() ); } }