Exemplo n.º 1
0
 /**
  * Method to test loadObject().
  *
  * @return void
  *
  * @covers Windwalker\Registry\Registry::loadObject
  */
 public function testLoadObject()
 {
     $registry = new Registry();
     $registry->loadObject((object) $this->getTestData());
     $this->assertEquals($registry->get('olive'), 'peace');
     $this->assertEquals($registry->get('pos1.sunflower'), 'love');
 }