You are here

public function InlineTest::testDump in Plug 7

@dataProvider getTestsForDump

File

lib/Symfony/yaml/Symfony/Component/Yaml/Tests/InlineTest.php, line 39

Class

InlineTest

Namespace

Symfony\Component\Yaml\Tests

Code

public function testDump($yaml, $value) {
  $this
    ->assertEquals($yaml, Inline::dump($value), sprintf('::dump() converts a PHP structure to an inline YAML (%s)', $yaml));
  $this
    ->assertSame($value, Inline::parse(Inline::dump($value)), 'check consistency');
}