示例#1
0
文件: Conf.php 项目: Anaphore/viewer
 /**
  * Test configured prepared method
  *
  * @return void
  */
 public function testGetPrepareMethod()
 {
     $method = $this->_conf->getPrepareMethod();
     $this->string($method)->isIdenticalTo('gd');
     $conf = new Viewer\Conf(TESTS_DIR . '/config/config-woprepared.yml');
     $method = $conf->getPrepareMethod();
     $this->string($method)->isIdenticalTo('choose');
 }