1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/tests/CompositePrimaryKeyTestCase.php
2006-07-21 23:22:15 +00:00

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();
}
}
?>