public function testLog()
 {
     $SofortLibAbstractMock = new SofortLibAbstractMock(self::$configkey);
     $FileLoggerHandler = $this->getMockForAbstractClass('fileLogger');
     $FileLoggerHandler->expects($this->any())->method('log')->with('log')->will($this->returnValue('log'));
     $SofortLibAbstractMock->setLogger($FileLoggerHandler);
     $SofortLibAbstractMock->setLogEnabled();
     $this->assertNull($SofortLibAbstractMock->log('log'));
 }