assertEquals("romanb", $entity->username); } } class ConstructorTestEntity1 { private $id; public $username; public function __construct($username = null) { if ($username !== null) { $this->username = $username; } } }