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 ImmutableTableTest_gwt extends com.google.gwt.junit.client.GWTTestCase {
     18 @Override public String getModuleName() {
     19   return "com.google.common.collect.testModule";
     20 }
     21 public void testBuilder() throws Exception {
     22   com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest();
     23   testCase.setUp();
     24   testCase.testBuilder();
     25 }
     26 
     27 public void testBuilder_noDuplicates() throws Exception {
     28   com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest();
     29   testCase.setUp();
     30   testCase.testBuilder_noDuplicates();
     31 }
     32 
     33 public void testBuilder_noNulls() throws Exception {
     34   com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest();
     35   testCase.setUp();
     36   testCase.testBuilder_noNulls();
     37 }
     38 
     39 public void testBuilder_orderColumnsBy_dense() throws Exception {
     40   com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest();
     41   testCase.setUp();
     42   testCase.testBuilder_orderColumnsBy_dense();
     43 }
     44 
     45 public void testBuilder_orderColumnsBy_sparse() throws Exception {
     46   com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest();
     47   testCase.setUp();
     48   testCase.testBuilder_orderColumnsBy_sparse();
     49 }
     50 
     51 public void testBuilder_orderRowsAndColumnsBy_dense() throws Exception {
     52   com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest();
     53   testCase.setUp();
     54   testCase.testBuilder_orderRowsAndColumnsBy_dense();
     55 }
     56 
     57 public void testBuilder_orderRowsAndColumnsBy_putAll() throws Exception {
     58   com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest();
     59   testCase.setUp();
     60   testCase.testBuilder_orderRowsAndColumnsBy_putAll();
     61 }
     62 
     63 public void testBuilder_orderRowsAndColumnsBy_sparse() throws Exception {
     64   com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest();
     65   testCase.setUp();
     66   testCase.testBuilder_orderRowsAndColumnsBy_sparse();
     67 }
     68 
     69 public void testBuilder_orderRowsBy_dense() throws Exception {
     70   com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest();
     71   testCase.setUp();
     72   testCase.testBuilder_orderRowsBy_dense();
     73 }
     74 
     75 public void testBuilder_orderRowsBy_sparse() throws Exception {
     76   com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest();
     77   testCase.setUp();
     78   testCase.testBuilder_orderRowsBy_sparse();
     79 }
     80 
     81 public void testBuilder_withImmutableCell() throws Exception {
     82   com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest();
     83   testCase.setUp();
     84   testCase.testBuilder_withImmutableCell();
     85 }
     86 
     87 public void testBuilder_withImmutableCellAndNullContents() throws Exception {
     88   com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest();
     89   testCase.setUp();
     90   testCase.testBuilder_withImmutableCellAndNullContents();
     91 }
     92 
     93 public void testBuilder_withMutableCell() throws Exception {
     94   com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest();
     95   testCase.setUp();
     96   testCase.testBuilder_withMutableCell();
     97 }
     98 
     99 public void testColumn() throws Exception {
    100   com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest();
    101   testCase.setUp();
    102   testCase.testColumn();
    103 }
    104 
    105 public void testColumnNull() throws Exception {
    106   com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest();
    107   testCase.setUp();
    108   testCase.testColumnNull();
    109 }
    110 
    111 public void testColumnSetPartialOverlap() throws Exception {
    112   com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest();
    113   testCase.setUp();
    114   testCase.testColumnSetPartialOverlap();
    115 }
    116 
    117 public void testContains() throws Exception {
    118   com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest();
    119   testCase.setUp();
    120   testCase.testContains();
    121 }
    122 
    123 public void testContainsColumn() throws Exception {
    124   com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest();
    125   testCase.setUp();
    126   testCase.testContainsColumn();
    127 }
    128 
    129 public void testContainsRow() throws Exception {
    130   com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest();
    131   testCase.setUp();
    132   testCase.testContainsRow();
    133 }
    134 
    135 public void testContainsValue() throws Exception {
    136   com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest();
    137   testCase.setUp();
    138   testCase.testContainsValue();
    139 }
    140 
    141 public void testCopyOf() throws Exception {
    142   com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest();
    143   testCase.setUp();
    144   testCase.testCopyOf();
    145 }
    146 
    147 public void testCopyOfDense() throws Exception {
    148   com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest();
    149   testCase.setUp();
    150   testCase.testCopyOfDense();
    151 }
    152 
    153 public void testCopyOfSparse() throws Exception {
    154   com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest();
    155   testCase.setUp();
    156   testCase.testCopyOfSparse();
    157 }
    158 
    159 public void testEquals() throws Exception {
    160   com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest();
    161   testCase.setUp();
    162   testCase.testEquals();
    163 }
    164 
    165 public void testGet() throws Exception {
    166   com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest();
    167   testCase.setUp();
    168   testCase.testGet();
    169 }
    170 
    171 public void testHashCode() throws Exception {
    172   com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest();
    173   testCase.setUp();
    174   testCase.testHashCode();
    175 }
    176 
    177 public void testIsEmpty() throws Exception {
    178   com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest();
    179   testCase.setUp();
    180   testCase.testIsEmpty();
    181 }
    182 
    183 public void testRow() throws Exception {
    184   com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest();
    185   testCase.setUp();
    186   testCase.testRow();
    187 }
    188 
    189 public void testRowNull() throws Exception {
    190   com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest();
    191   testCase.setUp();
    192   testCase.testRowNull();
    193 }
    194 
    195 public void testSize() throws Exception {
    196   com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest();
    197   testCase.setUp();
    198   testCase.testSize();
    199 }
    200 
    201 public void testToStringSize1() throws Exception {
    202   com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest();
    203   testCase.setUp();
    204   testCase.testToStringSize1();
    205 }
    206 }
    207