Symfony\Component\Serializer\Tests\Normalizer\ObjectNormalizerTest::testCallbacks PHP Method

testCallbacks() public method

public testCallbacks ( $callbacks, $value, $result, $message )
    public function testCallbacks($callbacks, $value, $result, $message)
    {
        $this->normalizer->setCallbacks($callbacks);
        $obj = new ObjectConstructorDummy('', $value, true);
        $this->assertEquals($result, $this->normalizer->normalize($obj, 'any'), $message);
    }