Files
doctrine1/tests/CompositePrimaryKeyTestCase.php
2010-04-06 21:01:37 -04:00

14 lines
366 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();
}
}