public function testIsValidRowByRowLimit()
 {
     $logReaderService = new LogReaderService();
     $this->assertFalse($logReaderService->isValidRowByRowLimit());
     $limitRows = 10;
     $logReaderService->setLimitRows($limitRows);
     $this->assertTrue($logReaderService->isValidRowByRowLimit());
 }