Home | History | Annotate | Download | only in collect
      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 MultimapsTest_gwt extends com.google.gwt.junit.client.GWTTestCase {
     18 @Override public String getModuleName() {
     19   return "com.google.common.collect.testModule";
     20 }
     21 public void testAsMap_listMultimap() throws Exception {
     22   com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest();
     23   testCase.testAsMap_listMultimap();
     24 }
     25 
     26 public void testAsMap_multimap() throws Exception {
     27   com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest();
     28   testCase.testAsMap_multimap();
     29 }
     30 
     31 public void testAsMap_setMultimap() throws Exception {
     32   com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest();
     33   testCase.testAsMap_setMultimap();
     34 }
     35 
     36 public void testAsMap_sortedSetMultimap() throws Exception {
     37   com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest();
     38   testCase.testAsMap_sortedSetMultimap();
     39 }
     40 
     41 public void testFilteredKeysListMultimapGetBadValue() throws Exception {
     42   com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest();
     43   testCase.testFilteredKeysListMultimapGetBadValue();
     44 }
     45 
     46 public void testFilteredKeysSetMultimapGetBadValue() throws Exception {
     47   com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest();
     48   testCase.testFilteredKeysSetMultimapGetBadValue();
     49 }
     50 
     51 public void testFilteredKeysSetMultimapReplaceValues() throws Exception {
     52   com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest();
     53   testCase.testFilteredKeysSetMultimapReplaceValues();
     54 }
     55 
     56 public void testForMap() throws Exception {
     57   com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest();
     58   testCase.testForMap();
     59 }
     60 
     61 public void testForMapAsMap() throws Exception {
     62   com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest();
     63   testCase.testForMapAsMap();
     64 }
     65 
     66 public void testForMapGetIteration() throws Exception {
     67   com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest();
     68   testCase.testForMapGetIteration();
     69 }
     70 
     71 public void testForMapRemoveAll() throws Exception {
     72   com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest();
     73   testCase.testForMapRemoveAll();
     74 }
     75 
     76 public void testIndex() throws Exception {
     77   com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest();
     78   testCase.testIndex();
     79 }
     80 
     81 public void testIndexIterator() throws Exception {
     82   com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest();
     83   testCase.testIndexIterator();
     84 }
     85 
     86 public void testIndex_nullKey() throws Exception {
     87   com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest();
     88   testCase.testIndex_nullKey();
     89 }
     90 
     91 public void testIndex_nullValue() throws Exception {
     92   com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest();
     93   testCase.testIndex_nullValue();
     94 }
     95 
     96 public void testIndex_ordering() throws Exception {
     97   com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest();
     98   testCase.testIndex_ordering();
     99 }
    100 
    101 public void testInvertFrom() throws Exception {
    102   com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest();
    103   testCase.testInvertFrom();
    104 }
    105 
    106 public void testNewListMultimap() throws Exception {
    107   com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest();
    108   testCase.testNewListMultimap();
    109 }
    110 
    111 public void testNewMultimap() throws Exception {
    112   com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest();
    113   testCase.testNewMultimap();
    114 }
    115 
    116 public void testNewMultimapWithCollectionRejectingNegativeElements() throws Exception {
    117   com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest();
    118   testCase.testNewMultimapWithCollectionRejectingNegativeElements();
    119 }
    120 
    121 public void testNewSetMultimap() throws Exception {
    122   com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest();
    123   testCase.testNewSetMultimap();
    124 }
    125 
    126 public void testNewSortedSetMultimap() throws Exception {
    127   com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest();
    128   testCase.testNewSortedSetMultimap();
    129 }
    130 
    131 public void testSynchronizedMultimapSampleCodeCompilation() throws Exception {
    132   com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest();
    133   testCase.testSynchronizedMultimapSampleCodeCompilation();
    134 }
    135 
    136 public void testUnmodifiableArrayListMultimapRandomAccess() throws Exception {
    137   com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest();
    138   testCase.testUnmodifiableArrayListMultimapRandomAccess();
    139 }
    140 
    141 public void testUnmodifiableLinkedListMultimapRandomAccess() throws Exception {
    142   com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest();
    143   testCase.testUnmodifiableLinkedListMultimapRandomAccess();
    144 }
    145 
    146 public void testUnmodifiableListMultimapShortCircuit() throws Exception {
    147   com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest();
    148   testCase.testUnmodifiableListMultimapShortCircuit();
    149 }
    150 
    151 public void testUnmodifiableMultimapEntries() throws Exception {
    152   com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest();
    153   testCase.testUnmodifiableMultimapEntries();
    154 }
    155 
    156 public void testUnmodifiableMultimapIsView() throws Exception {
    157   com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest();
    158   testCase.testUnmodifiableMultimapIsView();
    159 }
    160 
    161 public void testUnmodifiableMultimapShortCircuit() throws Exception {
    162   com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest();
    163   testCase.testUnmodifiableMultimapShortCircuit();
    164 }
    165 
    166 public void testUnmodifiableSetMultimapShortCircuit() throws Exception {
    167   com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest();
    168   testCase.testUnmodifiableSetMultimapShortCircuit();
    169 }
    170 }
    171