You are here

public function Util_XMLTest::testConvertAssertSelectTrue in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/phpunit/phpunit/tests/Util/XMLTest.php \Util_XMLTest::testConvertAssertSelectTrue()

File

vendor/phpunit/phpunit/tests/Util/XMLTest.php, line 246

Class

Util_XMLTest
@since Class available since Release 3.3.0 @covers PHPUnit_Util_XML

Code

public function testConvertAssertSelectTrue() {
  $selector = '#foo';
  $content = true;
  $converted = PHPUnit_Util_XML::convertSelectToTag($selector, $content);
  $tag = array(
    'id' => 'foo',
  );
  $this
    ->assertEquals($tag, $converted);
}