/* * Copyright 2000 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, * CA 95054 USA or visit www.sun.com if you need additional information or * have any questions. */ /** * @test * @bug 4245809 * @summary Basic test for LinkedHashMap. (Based on MapBash) */ import java.util.*; import java.io.*; public class Basic { static Random rnd = new Random(666); static Object nil = new Integer(0); public static void main(String[] args) throws Exception { int numItr = 500; int mapSize = 500; // Linked List test for (int i=0; i=0; i--) { Integer x = (Integer) l.get(i); if (!m.get(x).equals(x)) throw new Exception("Wrong value: "+i+", "+m.get(x)+", "+x); } if (!new ArrayList(m.keySet()).equals(l)) throw new Exception("Insertion order not preserved after read."); for (int i=mapSize-1; i>=0; i--) { Integer x = (Integer) l.get(i); m.put(x, x); } if (!new ArrayList(m.keySet()).equals(l)) throw new Exception("Insert order not preserved after reinsert."); m2 = (Map) ((LinkedHashMap)m).clone(); if (!m.equals(m2)) throw new Exception("Insert-order Map != clone."); List l2 = new ArrayList(l); Collections.shuffle(l2); for (int i=0; i