public function testFindAllLog() { $cmapper = new CheckinLogMapper(self::$pdo); $log = getLogInstance(); $cmapper->insert($log); $cmapper->insert($log); $newLogs = $cmapper->findAll()->fetchAll(); $this->assertEquals(2, count($newLogs)); }