Exemple #1
0
 public function testSameObject()
 {
     $c1 = DAO::faketory('compte');
     $c2 = DB_DataObject_Pluggable::retreiveFromRegistry('compte', $c1->id);
     $this->assertEquals($c1->id, $c2->id);
     $this->assertEquals($c1->ref, $c2->ref);
     $this->assertTrue($c1 === $c2);
 }
Exemple #2
0
 public function testCacheClearedAtStartup()
 {
     $taggable = DAO::faketory('compte');
     $this->assertEmpty($taggable->tagplugin_cache);
 }