1 /* 2 * Copyright (C) 2008 The Guava Authors 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 package com.google.common.collect; 17 public class LinkedHashMultimapTest_gwt extends com.google.gwt.junit.client.GWTTestCase { getModuleName()18@Override public String getModuleName() { 19 return "com.google.common.collect.testModule"; 20 } testCreate()21public void testCreate() throws Exception { 22 com.google.common.collect.LinkedHashMultimapTest testCase = new com.google.common.collect.LinkedHashMultimapTest(); 23 testCase.testCreate(); 24 } 25 testCreateFromIllegalSizes()26public void testCreateFromIllegalSizes() throws Exception { 27 com.google.common.collect.LinkedHashMultimapTest testCase = new com.google.common.collect.LinkedHashMultimapTest(); 28 testCase.testCreateFromIllegalSizes(); 29 } 30 testCreateFromMultimap()31public void testCreateFromMultimap() throws Exception { 32 com.google.common.collect.LinkedHashMultimapTest testCase = new com.google.common.collect.LinkedHashMultimapTest(); 33 testCase.testCreateFromMultimap(); 34 } 35 testCreateFromSizes()36public void testCreateFromSizes() throws Exception { 37 com.google.common.collect.LinkedHashMultimapTest testCase = new com.google.common.collect.LinkedHashMultimapTest(); 38 testCase.testCreateFromSizes(); 39 } 40 testKeysToString_ordering()41public void testKeysToString_ordering() throws Exception { 42 com.google.common.collect.LinkedHashMultimapTest testCase = new com.google.common.collect.LinkedHashMultimapTest(); 43 testCase.testKeysToString_ordering(); 44 } 45 testOrderingReadOnly()46public void testOrderingReadOnly() throws Exception { 47 com.google.common.collect.LinkedHashMultimapTest testCase = new com.google.common.collect.LinkedHashMultimapTest(); 48 testCase.testOrderingReadOnly(); 49 } 50 testOrderingSynchronized()51public void testOrderingSynchronized() throws Exception { 52 com.google.common.collect.LinkedHashMultimapTest testCase = new com.google.common.collect.LinkedHashMultimapTest(); 53 testCase.testOrderingSynchronized(); 54 } 55 testOrderingUnmodifiable()56public void testOrderingUnmodifiable() throws Exception { 57 com.google.common.collect.LinkedHashMultimapTest testCase = new com.google.common.collect.LinkedHashMultimapTest(); 58 testCase.testOrderingUnmodifiable(); 59 } 60 testOrderingUpdates()61public void testOrderingUpdates() throws Exception { 62 com.google.common.collect.LinkedHashMultimapTest testCase = new com.google.common.collect.LinkedHashMultimapTest(); 63 testCase.testOrderingUpdates(); 64 } 65 testPutMultimapOrdered()66public void testPutMultimapOrdered() throws Exception { 67 com.google.common.collect.LinkedHashMultimapTest testCase = new com.google.common.collect.LinkedHashMultimapTest(); 68 testCase.testPutMultimapOrdered(); 69 } 70 testToString()71public void testToString() throws Exception { 72 com.google.common.collect.LinkedHashMultimapTest testCase = new com.google.common.collect.LinkedHashMultimapTest(); 73 testCase.testToString(); 74 } 75 testToStringNullExact()76public void testToStringNullExact() throws Exception { 77 com.google.common.collect.LinkedHashMultimapTest testCase = new com.google.common.collect.LinkedHashMultimapTest(); 78 testCase.testToStringNullExact(); 79 } 80 testValueSetHashTableExpansion()81public void testValueSetHashTableExpansion() throws Exception { 82 com.google.common.collect.LinkedHashMultimapTest testCase = new com.google.common.collect.LinkedHashMultimapTest(); 83 testCase.testValueSetHashTableExpansion(); 84 } 85 } 86