Implement WeakHashMap.
[SquirrelJME.git] / modules / cldc-compact / src / test / java / util / TestLinkedListDeque.java
blobff6c45df2949d57cb091181f7b29d9ec65b89e89
1 // -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
3 // SquirrelJME
4 // Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
5 // ---------------------------------------------------------------------------
6 // SquirrelJME is under the GNU General Public License v3+, or later.
7 // See license.mkd for licensing and copyright information.
8 // ---------------------------------------------------------------------------
10 package util;
12 import java.util.LinkedList;
14 /**
15 * Tests linked lists.
17 * @since 2019/01/20
19 public class TestLinkedListDeque
20 extends __TestDeque__
22 /**
23 * Initializes the test.
25 * @since 2019/01/20
27 public TestLinkedListDeque()
29 super(new LinkedList<Integer>(), true);