You are here

protected function YamlTest::setUp in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Component/Serialization/YamlTest.php \Drupal\Tests\Component\Serialization\YamlTest::setUp()
  2. 9 core/tests/Drupal/Tests/Component/Serialization/YamlTest.php \Drupal\Tests\Component\Serialization\YamlTest::setUp()

File

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

Class

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

Namespace

Drupal\Tests\Component\Serialization

Code

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