public function YamlPeclTest::testError in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Component/Serialization/YamlPeclTest.php \Drupal\Tests\Component\Serialization\YamlPeclTest::testError()
- 10 core/tests/Drupal/Tests/Component/Serialization/YamlPeclTest.php \Drupal\Tests\Component\Serialization\YamlPeclTest::testError()
Tests that invalid YAML throws an exception.
@covers ::errorHandler
File
- core/
tests/ Drupal/ Tests/ Component/ Serialization/ YamlPeclTest.php, line 89
Class
- YamlPeclTest
- Tests the YamlPecl serialization implementation.
Namespace
Drupal\Tests\Component\SerializationCode
public function testError() {
$this
->expectException(InvalidDataTypeException::class);
YamlPecl::decode('foo: [ads');
}