tokenize($input)); $this->phpDocNode = $phpDocParser->parse($tokens); } public function testGetAttribute(): void { $unKnownValue = $this->phpDocNode->getAttribute('unknown'); $this->assertNull($unKnownValue); } public function testSetAttribute(): void { $this->phpDocNode->setAttribute('key', 'value'); $attributeValue = $this->phpDocNode->getAttribute('key'); $this->assertSame('value', $attributeValue); } }