public function Util_XMLTest::testConvertAssertSelectFalse

File

drupal/core/vendor/phpunit/phpunit/Tests/Util/XMLTest.php, line 294

Class

Util_XMLTest
@package PHPUnit @author Mike Naberezny <mike@maintainable.com> @author Derek DeVries <derek@maintainable.com> @author Sebastian Bergmann <sebastian@phpunit.de> @copyright 2001-2013 Sebastian Bergmann…

Code

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