You are here

public function DumperTest::testObjectSupportEnabled in Lockr 7.3

File

vendor/symfony/yaml/Tests/DumperTest.php, line 209

Class

DumperTest

Namespace

Symfony\Component\Yaml\Tests

Code

public function testObjectSupportEnabled() {
  $dump = $this->dumper
    ->dump([
    'foo' => new A(),
    'bar' => 1,
  ], 0, 0, Yaml::DUMP_OBJECT);
  $this
    ->assertEquals('{ foo: !php/object \'O:30:"Symfony\\Component\\Yaml\\Tests\\A":1:{s:1:"a";s:3:"foo";}\', bar: 1 }', $dump, '->dump() is able to dump objects');
}