public function PropertyNormalizerTest::testDenormalizeNonExistingAttribute 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::testDenormalizeNonExistingAttribute()
File
- vendor/
symfony/ serializer/ Tests/ Normalizer/ PropertyNormalizerTest.php, line 404
Class
Namespace
Symfony\Component\Serializer\Tests\NormalizerCode
public function testDenormalizeNonExistingAttribute() {
$this
->assertEquals(new PropertyDummy(), $this->normalizer
->denormalize(array(
'non_existing' => true,
), __NAMESPACE__ . '\\PropertyDummy'));
}