function YamlTest::testError

Same name in other branches
  1. 11.x core/tests/Drupal/Tests/Component/Serialization/YamlTest.php \Drupal\Tests\Component\Serialization\YamlTest::testError()

Tests that invalid YAML throws an exception.

@covers ::decode

File

core/tests/Drupal/Tests/Component/Serialization/YamlTest.php, line 65

Class

YamlTest
Tests the Yaml serialization implementation.

Namespace

Drupal\Tests\Component\Serialization

Code

public function testError() : void {
    $this->expectException(InvalidDataTypeException::class);
    Yaml::decode('foo: [ads');
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.