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.primitives;
17 public class UnsignedIntsTest_gwt extends com.google.gwt.junit.client.GWTTestCase {
getModuleName()18 @Override public String getModuleName() {
19   return "com.google.common.primitives.testModule";
20 }
testCompare()21 public void testCompare() throws Exception {
22   com.google.common.primitives.UnsignedIntsTest testCase = new com.google.common.primitives.UnsignedIntsTest();
23   testCase.testCompare();
24 }
25 
testDecodeInt()26 public void testDecodeInt() throws Exception {
27   com.google.common.primitives.UnsignedIntsTest testCase = new com.google.common.primitives.UnsignedIntsTest();
28   testCase.testDecodeInt();
29 }
30 
testDecodeIntFails()31 public void testDecodeIntFails() throws Exception {
32   com.google.common.primitives.UnsignedIntsTest testCase = new com.google.common.primitives.UnsignedIntsTest();
33   testCase.testDecodeIntFails();
34 }
35 
testDivide()36 public void testDivide() throws Exception {
37   com.google.common.primitives.UnsignedIntsTest testCase = new com.google.common.primitives.UnsignedIntsTest();
38   testCase.testDivide();
39 }
40 
testJoin()41 public void testJoin() throws Exception {
42   com.google.common.primitives.UnsignedIntsTest testCase = new com.google.common.primitives.UnsignedIntsTest();
43   testCase.testJoin();
44 }
45 
testLexicographicalComparator()46 public void testLexicographicalComparator() throws Exception {
47   com.google.common.primitives.UnsignedIntsTest testCase = new com.google.common.primitives.UnsignedIntsTest();
48   testCase.testLexicographicalComparator();
49 }
50 
testMax()51 public void testMax() throws Exception {
52   com.google.common.primitives.UnsignedIntsTest testCase = new com.google.common.primitives.UnsignedIntsTest();
53   testCase.testMax();
54 }
55 
testMax_noArgs()56 public void testMax_noArgs() throws Exception {
57   com.google.common.primitives.UnsignedIntsTest testCase = new com.google.common.primitives.UnsignedIntsTest();
58   testCase.testMax_noArgs();
59 }
60 
testMin()61 public void testMin() throws Exception {
62   com.google.common.primitives.UnsignedIntsTest testCase = new com.google.common.primitives.UnsignedIntsTest();
63   testCase.testMin();
64 }
65 
testMin_noArgs()66 public void testMin_noArgs() throws Exception {
67   com.google.common.primitives.UnsignedIntsTest testCase = new com.google.common.primitives.UnsignedIntsTest();
68   testCase.testMin_noArgs();
69 }
70 
testParseInt()71 public void testParseInt() throws Exception {
72   com.google.common.primitives.UnsignedIntsTest testCase = new com.google.common.primitives.UnsignedIntsTest();
73   testCase.testParseInt();
74 }
75 
testParseIntThrowsExceptionForInvalidRadix()76 public void testParseIntThrowsExceptionForInvalidRadix() throws Exception {
77   com.google.common.primitives.UnsignedIntsTest testCase = new com.google.common.primitives.UnsignedIntsTest();
78   testCase.testParseIntThrowsExceptionForInvalidRadix();
79 }
80 
testParseIntWithRadix()81 public void testParseIntWithRadix() throws Exception {
82   com.google.common.primitives.UnsignedIntsTest testCase = new com.google.common.primitives.UnsignedIntsTest();
83   testCase.testParseIntWithRadix();
84 }
85 
testRemainder()86 public void testRemainder() throws Exception {
87   com.google.common.primitives.UnsignedIntsTest testCase = new com.google.common.primitives.UnsignedIntsTest();
88   testCase.testRemainder();
89 }
90 
testToLong()91 public void testToLong() throws Exception {
92   com.google.common.primitives.UnsignedIntsTest testCase = new com.google.common.primitives.UnsignedIntsTest();
93   testCase.testToLong();
94 }
95 
testToString()96 public void testToString() throws Exception {
97   com.google.common.primitives.UnsignedIntsTest testCase = new com.google.common.primitives.UnsignedIntsTest();
98   testCase.testToString();
99 }
100 }
101