15 lines
383 B
PHP
15 lines
383 B
PHP
<?php
|
|
class Doctrine_Composite_PrimaryKey_TestCase extends Doctrine_UnitTestCase {
|
|
public function prepareData() { }
|
|
|
|
public function prepareTables() {
|
|
$this->tables = array();
|
|
$this->tables[] = "CPK_Test";
|
|
$this->tables[] = "CPK_Test2";
|
|
$this->tables[] = "CPK_Association";
|
|
|
|
parent::prepareTables();
|
|
}
|
|
}
|
|
?>
|