示例#1
0
 /**
  * @test
  */
 public function shouldLoadConfigAndGetCorrectValue()
 {
     $config = new Config(__DIR__ . '/../src/config.php');
     $command = $config->read('php_command');
     $this->assertEquals('php', $command);
     $this->assertTrue($config->has('tmp_dir'));
 }