assertTrue($entity->isNew()); $this->assertEquals("romanb", $entity->username); } } class ConstructorTestEntity1 extends Doctrine_Entity { public function __construct($username = null) { parent::__construct(); if ($this->isNew()) { $this->username = $username; } } /* The mapping definition */ public static function initMetadata($mapping) { $mapping->mapField(array( 'fieldName' => 'id', 'type' => 'integer', 'length' => 4, 'id' => true )); $mapping->mapField(array( 'fieldName' => 'username', 'type' => 'string', 'length' => 50 )); } } ?>