'fooBar' => 'foobar',
'camelCase' => 'camelcase',
'object' => 'string_object',
'go' => true,
],
$this->normalizer->
normalize($obj, 'any'
) );
} public function testNormalizeObjectWithUninitializedProperties() { $obj =
new Php74Dummy();
$this->
assertEquals( ['initializedProperty' => 'defaultValue'
],
$this->normalizer->
normalize($obj, 'any'
) );
} public function testNormalizeObjectWithUnsetProperties() { $obj =
new ObjectInner();
unset($obj->foo
);
$this->
assertEquals( [