public function DumperTest::testObjectSupportDisabledWithExceptions

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

File

drupal/core/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/DumperTest.php, line 198

Class

DumperTest

Namespace

Symfony\Component\Yaml\Tests

Code

public function testObjectSupportDisabledWithExceptions() {
  $this->dumper
    ->dump(array(
    'foo' => new A(),
    'bar' => 1,
  ), 0, 0, true, false);
}