$obj =
new ObjectInner();
unset($obj->foo
);
$this->
assertEquals( ['bar' => null
],
$this->normalizer->
normalize($obj, 'any'
) );
} public function testNormalizeObjectWithLazyProperties() { $obj =
new LazyObjectInner();
unset($obj->foo
);
$this->
assertEquals( ['foo' => 123, 'bar' => null
],
$this->normalizer->
normalize($obj, 'any'
) );
} public function testNormalizeObjectWithUninitializedPrivateProperties() { $obj =
new Php74DummyPrivate();
$this->
assertEquals( [