tests: Remove unused private method

Seems no longer in use since 595662 (If6b10b0ddcbd4b2)

Change-Id: I0c20127820194f5875804a3a0e3f42d30585cd1c
This commit is contained in:
Ammarpad 2024-12-07 13:41:48 +01:00
parent 125b3976ea
commit d9401f9085

View file

@ -34,25 +34,6 @@ class SkinVectorTest extends MediaWikiIntegrationTestCase {
return $template; return $template;
} }
/**
* @param string $nodeString an HTML of the node we want to verify
* @param string $tag Tag of the element we want to check
* @param string $attribute Attribute of the element we want to check
* @param string $search Value of the attribute we want to verify
* @return bool
*/
private function expectNodeAttribute( $nodeString, $tag, $attribute, $search ) {
$node = new \DOMDocument();
$node->loadHTML( $nodeString );
$element = $node->getElementsByTagName( $tag )->item( 0 );
if ( !$element ) {
return false;
}
$values = explode( ' ', $element->getAttribute( $attribute ) );
return in_array( $search, $values );
}
/** /**
* @covers \MediaWiki\Skins\Vector\SkinVectorLegacy::getTemplateData * @covers \MediaWiki\Skins\Vector\SkinVectorLegacy::getTemplateData
*/ */