/** * Tests the log write method * * @return void */ public function testLogWriting() { $View = new View(); $countBefore = $this->Logs->find()->count(); $View->log('x'); $View->log('warning', LOG_WARNING); Log::write(LOG_ERR, 'y'); Log::write(LOG_INFO, 'z'); $countAfter = $this->Logs->find()->count(); $this->assertSame($countBefore + 8, $countAfter); // should be 4 (but for some reason everything is added twice }