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