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 ObjectArraysTest_gwt extends com.google.gwt.junit.client.GWTTestCase {
getModuleName()18 @Override public String getModuleName() {
19   return "com.google.common.collect.testModule";
20 }
testAppendOneElement()21 public void testAppendOneElement() throws Exception {
22   com.google.common.collect.ObjectArraysTest testCase = new com.google.common.collect.ObjectArraysTest();
23   testCase.testAppendOneElement();
24 }
25 
testAppendTwoElements()26 public void testAppendTwoElements() throws Exception {
27   com.google.common.collect.ObjectArraysTest testCase = new com.google.common.collect.ObjectArraysTest();
28   testCase.testAppendTwoElements();
29 }
30 
testAppendZeroElements()31 public void testAppendZeroElements() throws Exception {
32   com.google.common.collect.ObjectArraysTest testCase = new com.google.common.collect.ObjectArraysTest();
33   testCase.testAppendZeroElements();
34 }
35 
testEmptyArrayToEmpty()36 public void testEmptyArrayToEmpty() throws Exception {
37   com.google.common.collect.ObjectArraysTest testCase = new com.google.common.collect.ObjectArraysTest();
38   testCase.testEmptyArrayToEmpty();
39 }
40 
testEmptyArrayToNonEmpty()41 public void testEmptyArrayToNonEmpty() throws Exception {
42   com.google.common.collect.ObjectArraysTest testCase = new com.google.common.collect.ObjectArraysTest();
43   testCase.testEmptyArrayToNonEmpty();
44 }
45 
testNewArray_fromArray_Empty()46 public void testNewArray_fromArray_Empty() throws Exception {
47   com.google.common.collect.ObjectArraysTest testCase = new com.google.common.collect.ObjectArraysTest();
48   testCase.testNewArray_fromArray_Empty();
49 }
50 
testNewArray_fromArray_Nonempty()51 public void testNewArray_fromArray_Nonempty() throws Exception {
52   com.google.common.collect.ObjectArraysTest testCase = new com.google.common.collect.ObjectArraysTest();
53   testCase.testNewArray_fromArray_Nonempty();
54 }
55 
testNewArray_fromArray_OfArray()56 public void testNewArray_fromArray_OfArray() throws Exception {
57   com.google.common.collect.ObjectArraysTest testCase = new com.google.common.collect.ObjectArraysTest();
58   testCase.testNewArray_fromArray_OfArray();
59 }
60 
testNonEmptyToLonger()61 public void testNonEmptyToLonger() throws Exception {
62   com.google.common.collect.ObjectArraysTest testCase = new com.google.common.collect.ObjectArraysTest();
63   testCase.testNonEmptyToLonger();
64 }
65 
testNonEmptyToSameLength()66 public void testNonEmptyToSameLength() throws Exception {
67   com.google.common.collect.ObjectArraysTest testCase = new com.google.common.collect.ObjectArraysTest();
68   testCase.testNonEmptyToSameLength();
69 }
70 
testNonEmptyToShorter()71 public void testNonEmptyToShorter() throws Exception {
72   com.google.common.collect.ObjectArraysTest testCase = new com.google.common.collect.ObjectArraysTest();
73   testCase.testNonEmptyToShorter();
74 }
75 
testPrependOneElement()76 public void testPrependOneElement() throws Exception {
77   com.google.common.collect.ObjectArraysTest testCase = new com.google.common.collect.ObjectArraysTest();
78   testCase.testPrependOneElement();
79 }
80 
testPrependTwoElements()81 public void testPrependTwoElements() throws Exception {
82   com.google.common.collect.ObjectArraysTest testCase = new com.google.common.collect.ObjectArraysTest();
83   testCase.testPrependTwoElements();
84 }
85 
testPrependZeroElements()86 public void testPrependZeroElements() throws Exception {
87   com.google.common.collect.ObjectArraysTest testCase = new com.google.common.collect.ObjectArraysTest();
88   testCase.testPrependZeroElements();
89 }
90 
testToArrayImpl1()91 public void testToArrayImpl1() throws Exception {
92   com.google.common.collect.ObjectArraysTest testCase = new com.google.common.collect.ObjectArraysTest();
93   testCase.testToArrayImpl1();
94 }
95 
testToArrayImpl2()96 public void testToArrayImpl2() throws Exception {
97   com.google.common.collect.ObjectArraysTest testCase = new com.google.common.collect.ObjectArraysTest();
98   testCase.testToArrayImpl2();
99 }
100 }
101