function YamlTest::setUp

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

File

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

Class

YamlTest
@coversDefaultClass \Drupal\Component\Serialization\Yaml @group Serialization

Namespace

Drupal\Tests\Component\Serialization

Code

public function setUp() : void {
    parent::setUp();
    $this->mockParser = $this->getMockBuilder('\\stdClass')
        ->addMethods([
        'encode',
        'decode',
        'getFileExtension',
    ])
        ->getMock();
    YamlParserProxy::setMock($this->mockParser);
}

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