Example #1
0
 /**
  * Tests Configuration::addLogger
  *
  * @expectedException \phpbu\App\Exception
  */
 public function testLoggerInvalid()
 {
     $conf = new Configuration();
     $conf->setFilename('/tmp/foo.xml');
     $conf->addLogger('no valid logger at all');
 }