Exemple #1
0
 public function testGetSetLevel()
 {
     $this->logger->setLevel('error');
     $this->assertEquals('ERROR', $this->logger->getLevel()->toString());
     $this->logger->setLevel(500);
     $this->assertEquals('NOTICE', $this->logger->getLevel()->toString());
     $this->setExpectedException('Piton\\Exceptions\\InvalidArgumentException');
     $this->logger->setLevel(array());
 }