mirror of
https://github.com/doctrine/doctrine1.git
synced 2026-03-23 22:42:06 +01:00
14 lines
366 B
PHP
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();
|
|
}
|
|
}
|