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