public function testFindAllLOCALog()
 {
     $LOCALogName = "forFindLOCALog";
     $LOCALogName2 = "forFindLOCALog2";
     $loca = getLOCALogInstance($LOCALogName);
     $locas2 = getLOCALogInstance($LOCALogName2);
     $locas = array();
     array_push($locas, $loca, $locas2);
     $bmapper = new LOCALogMapper(self::$pdo);
     $bmapper->insert($locas);
     $newLocas = $bmapper->findAll()->fetchAll();
     $this->assertEquals(2, count($newLocas));
 }