1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/tests/CompositePrimaryKeyTestCase.php

15 lines
383 B
PHP
Raw Normal View History

2006-04-14 00:37:28 +04:00
<?php
2006-07-22 03:22:15 +04:00
class Doctrine_Composite_PrimaryKey_TestCase extends Doctrine_UnitTestCase {
public function prepareData() { }
2006-04-14 00:37:28 +04:00
2006-07-22 03:22:15 +04:00
public function prepareTables() {
$this->tables = array();
$this->tables[] = "CPK_Test";
$this->tables[] = "CPK_Test2";
$this->tables[] = "CPK_Association";
parent::prepareTables();
}
}
2006-04-14 00:37:28 +04:00
?>