1
0
mirror of synced 2024-12-13 06:46:03 +03:00
doctrine2/tests_old/Record/LockTestCase.php

24 lines
573 B
PHP
Raw Normal View History

<?php
class Doctrine_Record_Lock_TestCase extends Doctrine_UnitTestCase {
2007-08-09 21:09:20 +04:00
public function prepareTables()
{
$this->tables[] = 'rec1';
$this->tables[] = 'rec2';
parent::prepareTables();
}
public function prepareData() { }
public function testDeleteRecords()
{
$rec1 = new Rec1();
$rec1->first_name = 'Some name';
$rec1->Account = new Rec2();
$rec1->Account->address = 'Some address';
$rec1->save();
$rec1->delete();
$this->pass();
}
}