You are here

public function GetSetMethodNormalizerTest::testUncallableCallbacks in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/serializer/Tests/Normalizer/GetSetMethodNormalizerTest.php \Symfony\Component\Serializer\Tests\Normalizer\GetSetMethodNormalizerTest::testUncallableCallbacks()

@expectedException \InvalidArgumentException

File

vendor/symfony/serializer/Tests/Normalizer/GetSetMethodNormalizerTest.php, line 381

Class

GetSetMethodNormalizerTest

Namespace

Symfony\Component\Serializer\Tests\Normalizer

Code

public function testUncallableCallbacks() {
  $this->normalizer
    ->setCallbacks(array(
    'bar' => null,
  ));
  $obj = new GetConstructorDummy('baz', 'quux', true);
  $this->normalizer
    ->normalize($obj, 'any');
}