/opt/cpanel/ea-php74/root/usr/share/tests/pear/XML_Util/tests
Edit: /opt/cpanel/ea-php74/root/usr/share/tests/pear/XML_Util/tests/SplitQualifiedNameTests.php (839B)
'xslt',
'localPart' => 'stylesheet',
);
$this->assertEquals($expected, XML_Util::splitQualifiedName($original));
}
/**
* @covers XML_Util::splitQualifiedName()
*/
public function testSplitQualifiedNameWithNamespace()
{
$original = "stylesheet";
$namespace = "myNs";
$expected = array(
'namespace' => 'myNs',
'localPart' => 'stylesheet',
);
$this->assertEquals($expected, XML_Util::splitQualifiedName($original, $namespace));
}
}