public function ObjectNormalizerTest::testUncallableCallbacks in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/serializer/Tests/Normalizer/ObjectNormalizerTest.php \Symfony\Component\Serializer\Tests\Normalizer\ObjectNormalizerTest::testUncallableCallbacks()
@expectedException \InvalidArgumentException
File
- vendor/
symfony/ serializer/ Tests/ Normalizer/ ObjectNormalizerTest.php, line 301
Class
- ObjectNormalizerTest
- @author Kévin Dunglas <dunglas@gmail.com>
Namespace
Symfony\Component\Serializer\Tests\NormalizerCode
public function testUncallableCallbacks() {
$this->normalizer
->setCallbacks(array(
'bar' => null,
));
$obj = new ObjectConstructorDummy('baz', 'quux', true);
$this->normalizer
->normalize($obj, 'any');
}