You are here

public function PropertyNormalizerTest::testDenormalize in Zircon Profile 8

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

File

vendor/symfony/serializer/Tests/Normalizer/PropertyNormalizerTest.php, line 55

Class

PropertyNormalizerTest

Namespace

Symfony\Component\Serializer\Tests\Normalizer

Code

public function testDenormalize() {
  $obj = $this->normalizer
    ->denormalize(array(
    'foo' => 'foo',
    'bar' => 'bar',
  ), __NAMESPACE__ . '\\PropertyDummy', 'any');
  $this
    ->assertEquals('foo', $obj->foo);
  $this
    ->assertEquals('bar', $obj
    ->getBar());
}