You are here

public function DumperTest::testObjectSupportDisabledWithExceptionsPassingTrue in Lockr 7.3

@group legacy @expectedException \Symfony\Component\Yaml\Exception\DumpException

File

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

Class

DumperTest

Namespace

Symfony\Component\Yaml\Tests

Code

public function testObjectSupportDisabledWithExceptionsPassingTrue() {
  $this->dumper
    ->dump([
    'foo' => new A(),
    'bar' => 1,
  ], 0, 0, true);
}