You are here

public function Util_XMLTest::testAssertValidKeysInvalidKey in Zircon Profile 8

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

File

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

Class

Util_XMLTest
@since Class available since Release 3.3.0 @covers PHPUnit_Util_XML

Code

public function testAssertValidKeysInvalidKey() {
  $options = array(
    'testA' => 1,
    'testB' => 2,
    'testD' => 3,
  );
  $valid = array(
    'testA',
    'testB',
    'testC',
  );
  try {
    $validated = PHPUnit_Util_XML::assertValidKeys($options, $valid);
    $this
      ->fail();
  } catch (PHPUnit_Framework_Exception $e) {
    $this
      ->assertEquals('Unknown key(s): testD', $e
      ->getMessage());
  }
}