You are here

public function PropertyNormalizerTest::testDenormalizeNonExistingAttribute in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 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

PropertyNormalizerTest

Namespace

Symfony\Component\Serializer\Tests\Normalizer

Code

public function testDenormalizeNonExistingAttribute() {
  $this
    ->assertEquals(new PropertyDummy(), $this->normalizer
    ->denormalize(array(
    'non_existing' => true,
  ), __NAMESPACE__ . '\\PropertyDummy'));
}