You are here

public function YamlTest::setUp in Drupal 8

Same name and namespace in other branches
  1. 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

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