1
0
mirror of synced 2025-01-18 06:21:40 +03:00
doctrine2/tests/CompositePrimaryKeyTestCase.php

15 lines
383 B
PHP
Raw Normal View History

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