Example #1
0
 /**
  * Test that the storage strategy for this logger is mutable
  */
 public function testLoggerStorageIsMutable()
 {
     $this->logger->setStorage(new NullStorage());
     $this->assertTrue($this->logger->getStorage() instanceof NullStorage);
 }