Commit ebc7d8d3 authored by zYne's avatar zYne

--no commit message

--no commit message
parent 07b5727c
...@@ -40,13 +40,16 @@ class Doctrine_Collection_Snapshot_TestCase extends Doctrine_UnitTestCase ...@@ -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 ...@@ -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();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment