public function DumperTest::testObjectSupportDisabledWithExceptions in Plug 7
@expectedException \Symfony\Component\Yaml\Exception\DumpException
File
- lib/
Symfony/ yaml/ Symfony/ Component/ Yaml/ Tests/ DumperTest.php, line 196
Class
Namespace
Symfony\Component\Yaml\TestsCode
public function testObjectSupportDisabledWithExceptions() {
$this->dumper
->dump(array(
'foo' => new A(),
'bar' => 1,
), 0, 0, true, false);
}