2006-04-14 00:37:28 +04:00
|
|
|
<?php
|
2006-07-22 03:22:15 +04:00
|
|
|
class Doctrine_Composite_PrimaryKey_TestCase extends Doctrine_UnitTestCase {
|
|
|
|
public function prepareData() { }
|
2006-04-14 00:37:28 +04:00
|
|
|
|
2006-07-22 03:22:15 +04:00
|
|
|
public function prepareTables() {
|
|
|
|
$this->tables = array();
|
|
|
|
$this->tables[] = "CPK_Test";
|
|
|
|
$this->tables[] = "CPK_Test2";
|
|
|
|
$this->tables[] = "CPK_Association";
|
|
|
|
|
|
|
|
parent::prepareTables();
|
|
|
|
}
|
|
|
|
}
|
2006-04-14 00:37:28 +04:00
|
|
|
?>
|