Example #1
0
 /**
  * tests Module->getEntityFlag()
  */
 public function testGetEntityFlag()
 {
     $entity = $this->setupEntity();
     $entity->setIsTree(true);
     $this->assertEquals(false, $this->module->getEntityFlag('is_tree'));
     $this->module->addEntity($entity);
     $this->assertEquals(true, $this->module->getEntityFlag('is_tree'));
 }