Esempio n. 1
0
 public function testGetSetLogLevel()
 {
     $this->assertEquals($this->logLevel, $this->subject->getLogLevel());
     $this->subject->setLogLevel(Logger::ALERT);
     $this->assertEquals(Logger::ALERT, $this->subject->getLogLevel());
 }