You are here

public function ParserTest::testParseBinaryData in Lockr 7.3

@dataProvider getBinaryData

File

vendor/symfony/yaml/Tests/ParserTest.php, line 1456

Class

ParserTest

Namespace

Symfony\Component\Yaml\Tests

Code

public function testParseBinaryData($data) {
  $this
    ->assertSame([
    'data' => 'Hello world',
  ], $this->parser
    ->parse($data));
}