public function PropertyNormalizerTest::testGroupsDenormalizeWithNameConverter in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/serializer/Tests/Normalizer/PropertyNormalizerTest.php \Symfony\Component\Serializer\Tests\Normalizer\PropertyNormalizerTest::testGroupsDenormalizeWithNameConverter()
File
- vendor/
symfony/ serializer/ Tests/ Normalizer/ PropertyNormalizerTest.php, line 279
Class
Namespace
Symfony\Component\Serializer\Tests\NormalizerCode
public function testGroupsDenormalizeWithNameConverter() {
$classMetadataFactory = new ClassMetadataFactory(new AnnotationLoader(new AnnotationReader()));
$this->normalizer = new PropertyNormalizer($classMetadataFactory, new CamelCaseToSnakeCaseNameConverter());
$this->normalizer
->setSerializer($this->serializer);
$obj = new GroupDummy();
$obj
->setFooBar('@dunglas');
$obj
->setSymfony('@coopTilleuls');
$this
->assertEquals($obj, $this->normalizer
->denormalize(array(
'bar' => null,
'foo_bar' => '@dunglas',
'symfony' => '@coopTilleuls',
'coop_tilleuls' => 'les-tilleuls.coop',
), 'Symfony\\Component\\Serializer\\Tests\\Fixtures\\GroupDummy', null, array(
'groups' => array(
'name_converter',
),
)));
}