Ejemplo n.º 1
0
 /**
  * Test for ConfigFile::getServers
  *
  * @return void
  * @test
  */
 public function testGetServers()
 {
     $this->object->set('Servers/1/x', 'a');
     $this->object->set('Servers/2/x', 'b');
     $this->assertEquals(array(1 => array('x' => 'a'), 2 => array('x' => 'b')), $this->object->getServers());
 }