public function GetSetMethodNormalizerTest::testConstructorDenormalizeWithNullArgument in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/serializer/Tests/Normalizer/GetSetMethodNormalizerTest.php \Symfony\Component\Serializer\Tests\Normalizer\GetSetMethodNormalizerTest::testConstructorDenormalizeWithNullArgument()
File
- vendor/
symfony/ serializer/ Tests/ Normalizer/ GetSetMethodNormalizerTest.php, line 190
Class
Namespace
Symfony\Component\Serializer\Tests\NormalizerCode
public function testConstructorDenormalizeWithNullArgument() {
$obj = $this->normalizer
->denormalize(array(
'foo' => 'foo',
'bar' => null,
'baz' => true,
), __NAMESPACE__ . '\\GetConstructorDummy', 'any');
$this
->assertEquals('foo', $obj
->getFoo());
$this
->assertNull($obj
->getBar());
$this
->assertTrue($obj
->isBaz());
}