public function Util_XMLTest::testAssertValidKeysValidKeysEmpty in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/tests/Util/XMLTest.php \Util_XMLTest::testAssertValidKeysValidKeysEmpty()
File
- vendor/
phpunit/ phpunit/ tests/ Util/ XMLTest.php, line 27
Class
- Util_XMLTest
- @since Class available since Release 3.3.0 @covers PHPUnit_Util_XML
Code
public function testAssertValidKeysValidKeysEmpty() {
$options = array(
'testA' => 1,
'testB' => 2,
);
$valid = array(
'testA',
'testB',
'testC',
);
$expected = array(
'testA' => 1,
'testB' => 2,
'testC' => null,
);
$validated = PHPUnit_Util_XML::assertValidKeys($options, $valid);
$this
->assertEquals($expected, $validated);
}