forked from doctrine/doctrine1
-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed test to check against a snapshot.
- Loading branch information
Showing
2 changed files
with
65 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
/** | ||
* Ticket_gh110_TestRecord | ||
* | ||
* This class has been auto-generated by the Doctrine ORM Framework | ||
* | ||
* @property int $id Type: integer(4) | ||
* @property my_custom_type $created_at Type: my_custom_type | ||
* @property string $deleted_at Type: timestamp, Timestamp in ISO-8601 format (YYYY-MM-DD HH:MI:SS) | ||
* | ||
* @method int getId() Type: integer(4) | ||
* @method my_custom_type getCreatedAt() Type: my_custom_type | ||
* @method string getDeletedAt() Type: timestamp, Timestamp in ISO-8601 format (YYYY-MM-DD HH:MI:SS) | ||
* | ||
* @method Ticket_gh110_TestRecord setId(int $val) Type: integer(4) | ||
* @method Ticket_gh110_TestRecord setCreatedAt(my_custom_type $val) Type: my_custom_type | ||
* @method Ticket_gh110_TestRecord setDeletedAt(string $val) Type: timestamp, Timestamp in ISO-8601 format (YYYY-MM-DD HH:MI:SS) | ||
* | ||
* @package ##PACKAGE## | ||
* @subpackage ##SUBPACKAGE## | ||
* @author ##NAME## <##EMAIL##> | ||
* @version {{REPLACED}} | ||
*/ | ||
class Ticket_gh110_TestRecord extends Doctrine_Record | ||
{ | ||
public function setTableDefinition() | ||
{ | ||
$this->hasColumn('id', 'integer', 4, array( | ||
'type' => 'integer', | ||
'length' => 4, | ||
)); | ||
$this->hasColumn('created_at', 'my_custom_type', null, array( | ||
'type' => 'my_custom_type', | ||
'length' => '', | ||
)); | ||
} | ||
|
||
public function setUp() | ||
{ | ||
parent::setUp(); | ||
$softdelete0 = new Doctrine_Template_SoftDelete(array( | ||
)); | ||
$timestampable0 = new Doctrine_Template_Timestampable(array( | ||
'updated' => | ||
array( | ||
'disabled' => true, | ||
), | ||
'unknown_column' => | ||
array( | ||
), | ||
)); | ||
$unknownactas0 = new UnknownActAs(array( | ||
)); | ||
$gh110_template0 = new Doctrine_Template_gh110_Template(array( | ||
)); | ||
$this->actAs($softdelete0); | ||
$this->actAs($timestampable0); | ||
$this->actAs($unknownactas0); | ||
$this->actAs($gh110_template0); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters