1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/tests_old/CompositePrimaryKeyTestCase.php
2008-02-08 17:27:54 +00:00

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