You are here

public function GetSetMethodNormalizerTest::testLegacyDenormalizeOnCamelCaseFormat in Zircon Profile 8

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

@group legacy

File

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

Class

GetSetMethodNormalizerTest

Namespace

Symfony\Component\Serializer\Tests\Normalizer

Code

public function testLegacyDenormalizeOnCamelCaseFormat() {
  $this->normalizer
    ->setCamelizedAttributes(array(
    'camel_case',
  ));
  $obj = $this->normalizer
    ->denormalize(array(
    'camel_case' => 'camelCase',
  ), __NAMESPACE__ . '\\GetSetDummy');
  $this
    ->assertEquals('camelCase', $obj
    ->getCamelCase());
}