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