1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/tests/CustomPrimaryKeyTestCase.php

27 lines
751 B
PHP
Raw Normal View History

2006-07-26 21:09:00 +04:00
<?php
require_once("UnitTestCase.php");
class Doctrine_CustomPrimaryKeyTestCase extends Doctrine_UnitTestCase {
public function prepareData() { }
public function prepareTables() {
$this->tables = array("CustomPK");
}
public function testOperations() {
$c = new CustomPK();
$this->assertTrue($c instanceof Doctrine_Record);
$c->name = "custom pk test";
$this->assertEqual($c->getID(), array());
$c->save();
$this->assertEqual($c->getID(), array("uid" => 1));
$this->session->clear();
$c = $this->session->getTable('CustomPK')->find(1);
$this->assertEqual($c->getID(), array("uid" => 1));
}
}
?>