/**
  * @testdox  Tests that a default PSR-3 LoggerInterface object is returned.
  *
  * @covers  JApplicationBase::getLogger
  */
 public function testGetLogger()
 {
     $this->assertInstanceOf('Psr\\Log\\NullLogger', $this->class->getLogger());
 }