Ejemplo n.º 1
0
 public function testHas()
 {
     $cfg = new Config($this->data);
     $this->assertTrue($cfg->has('fooo'));
     $this->assertTrue($cfg->has('foo.other'));
     $this->assertTrue($cfg->has('foo.bar'));
     $this->assertTrue($cfg->has('foo.bar'));
     $this->assertFalse($cfg->has('madeup'));
 }