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 SignedBytesTest_gwt extends com.google.gwt.junit.client.GWTTestCase { getModuleName()18@Override public String getModuleName() { 19 return "com.google.common.primitives.testModule"; 20 } testCheckedCast()21public void testCheckedCast() throws Exception { 22 com.google.common.primitives.SignedBytesTest testCase = new com.google.common.primitives.SignedBytesTest(); 23 testCase.testCheckedCast(); 24 } 25 testCompare()26public void testCompare() throws Exception { 27 com.google.common.primitives.SignedBytesTest testCase = new com.google.common.primitives.SignedBytesTest(); 28 testCase.testCompare(); 29 } 30 testJoin()31public void testJoin() throws Exception { 32 com.google.common.primitives.SignedBytesTest testCase = new com.google.common.primitives.SignedBytesTest(); 33 testCase.testJoin(); 34 } 35 testLexicographicalComparator()36public void testLexicographicalComparator() throws Exception { 37 com.google.common.primitives.SignedBytesTest testCase = new com.google.common.primitives.SignedBytesTest(); 38 testCase.testLexicographicalComparator(); 39 } 40 testMax()41public void testMax() throws Exception { 42 com.google.common.primitives.SignedBytesTest testCase = new com.google.common.primitives.SignedBytesTest(); 43 testCase.testMax(); 44 } 45 testMax_noArgs()46public void testMax_noArgs() throws Exception { 47 com.google.common.primitives.SignedBytesTest testCase = new com.google.common.primitives.SignedBytesTest(); 48 testCase.testMax_noArgs(); 49 } 50 testMin()51public void testMin() throws Exception { 52 com.google.common.primitives.SignedBytesTest testCase = new com.google.common.primitives.SignedBytesTest(); 53 testCase.testMin(); 54 } 55 testMin_noArgs()56public void testMin_noArgs() throws Exception { 57 com.google.common.primitives.SignedBytesTest testCase = new com.google.common.primitives.SignedBytesTest(); 58 testCase.testMin_noArgs(); 59 } 60 testSaturatedCast()61public void testSaturatedCast() throws Exception { 62 com.google.common.primitives.SignedBytesTest testCase = new com.google.common.primitives.SignedBytesTest(); 63 testCase.testSaturatedCast(); 64 } 65 } 66