This commit is contained in:
parent
07b5727c52
commit
ebc7d8d379
@ -40,13 +40,16 @@ class Doctrine_Collection_Snapshot_TestCase extends Doctrine_UnitTestCase
|
|||||||
{
|
{
|
||||||
public function prepareTables()
|
public function prepareTables()
|
||||||
{
|
{
|
||||||
$this->tables[] = 'Book';
|
$this->tables = array('Entity', 'User', 'Group', 'Phonenumber', 'Email', 'Book');
|
||||||
|
|
||||||
parent::prepareTables();
|
parent::prepareTables();
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testDiffForSimpleCollection()
|
public function testDiffForSimpleCollection()
|
||||||
{
|
{
|
||||||
$coll = Doctrine_Query::create()->from('User u')->orderby('u.id')->execute();
|
$q = Doctrine_Query::create()->from('User u')->orderby('u.id');
|
||||||
|
|
||||||
|
$coll = $q->execute();
|
||||||
$this->assertEqual($coll->count(), 8);
|
$this->assertEqual($coll->count(), 8);
|
||||||
|
|
||||||
unset($coll[0]);
|
unset($coll[0]);
|
||||||
@ -62,6 +65,7 @@ class Doctrine_Collection_Snapshot_TestCase extends Doctrine_UnitTestCase
|
|||||||
$coll = Doctrine_Query::create()->from('User u')->execute();
|
$coll = Doctrine_Query::create()->from('User u')->execute();
|
||||||
$this->assertEqual($coll->count(), 7);
|
$this->assertEqual($coll->count(), 7);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testDiffForOneToManyRelatedCollection()
|
public function testDiffForOneToManyRelatedCollection()
|
||||||
{
|
{
|
||||||
$q = new Doctrine_Query();
|
$q = new Doctrine_Query();
|
||||||
|
Loading…
Reference in New Issue
Block a user