Example #1
0
 public function test_nextLine_shouldAutomaticallyFetch100MoreEntriesWithoutMissingSome_Whenever100WereRead_AndReturnNewestFirst()
 {
     $this->createManyLogEntries(241);
     for ($i = 241; $i > 0; $i--) {
         $this->assertSame('DEBUG Piwik\\Common[2015-08-19 12:39:02] [93d35] Test Message ' . $i, $this->dbReader->nextLine()->content);
     }
     $this->assertNull($this->dbReader->nextLine());
 }