Ejemplo n.º 1
0
 /**
  * @covers PhCompile\PhCompile::setConfig
  * @covers PhCompile\PhCompile::getConfig
  */
 public function testSetAndGetConfig()
 {
     $config = array('foo' => array('bar' => 'baz'));
     $this->phCompile->setConfig($config);
     $this->assertEquals('baz', $this->phCompile->getConfig('foo.bar'));
 }