public function Util_XMLTest::testConvertAssertSelectEltId in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/phpunit/phpunit/tests/Util/XMLTest.php \Util_XMLTest::testConvertAssertSelectEltId()
File
- vendor/
phpunit/ phpunit/ tests/ Util/ XMLTest.php, line 164
Class
- Util_XMLTest
- @since Class available since Release 3.3.0 @covers PHPUnit_Util_XML
Code
public function testConvertAssertSelectEltId() {
$selector = 'div#foo';
$converted = PHPUnit_Util_XML::convertSelectToTag($selector);
$tag = array(
'tag' => 'div',
'id' => 'foo',
);
$this
->assertEquals($tag, $converted);
}