CompositePrimaryKeyTestCase.php 379 Bytes
Newer Older
doctrine's avatar
doctrine committed
1
<?php
2 3
class Doctrine_Composite_PrimaryKey_TestCase extends Doctrine_UnitTestCase {
    public function prepareData() { }
doctrine's avatar
doctrine committed
4

5 6 7 8 9 10 11 12 13
    public function prepareTables() { 
        $this->tables = array();
        $this->tables[] = "CPK_Test";
        $this->tables[] = "CPK_Test2";
        $this->tables[] = "CPK_Association";
        
        parent::prepareTables();
    }
}