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.base; 17 public class VerifyTest_gwt extends com.google.gwt.junit.client.GWTTestCase { getModuleName()18@Override public String getModuleName() { 19 return "com.google.common.base.testModule"; 20 } testVerifyNotNull_complexMessage_success()21public void testVerifyNotNull_complexMessage_success() throws Exception { 22 com.google.common.base.VerifyTest testCase = new com.google.common.base.VerifyTest(); 23 testCase.testVerifyNotNull_complexMessage_success(); 24 } 25 testVerifyNotNull_simpleMessage_failure()26public void testVerifyNotNull_simpleMessage_failure() throws Exception { 27 com.google.common.base.VerifyTest testCase = new com.google.common.base.VerifyTest(); 28 testCase.testVerifyNotNull_simpleMessage_failure(); 29 } 30 testVerifyNotNull_simple_failure()31public void testVerifyNotNull_simple_failure() throws Exception { 32 com.google.common.base.VerifyTest testCase = new com.google.common.base.VerifyTest(); 33 testCase.testVerifyNotNull_simple_failure(); 34 } 35 testVerifyNotNull_simple_success()36public void testVerifyNotNull_simple_success() throws Exception { 37 com.google.common.base.VerifyTest testCase = new com.google.common.base.VerifyTest(); 38 testCase.testVerifyNotNull_simple_success(); 39 } 40 testVerify_complexMessage_failure()41public void testVerify_complexMessage_failure() throws Exception { 42 com.google.common.base.VerifyTest testCase = new com.google.common.base.VerifyTest(); 43 testCase.testVerify_complexMessage_failure(); 44 } 45 testVerify_complexMessage_success()46public void testVerify_complexMessage_success() throws Exception { 47 com.google.common.base.VerifyTest testCase = new com.google.common.base.VerifyTest(); 48 testCase.testVerify_complexMessage_success(); 49 } 50 testVerify_simpleMessage_failure()51public void testVerify_simpleMessage_failure() throws Exception { 52 com.google.common.base.VerifyTest testCase = new com.google.common.base.VerifyTest(); 53 testCase.testVerify_simpleMessage_failure(); 54 } 55 testVerify_simpleMessage_success()56public void testVerify_simpleMessage_success() throws Exception { 57 com.google.common.base.VerifyTest testCase = new com.google.common.base.VerifyTest(); 58 testCase.testVerify_simpleMessage_success(); 59 } 60 testVerify_simple_failure()61public void testVerify_simple_failure() throws Exception { 62 com.google.common.base.VerifyTest testCase = new com.google.common.base.VerifyTest(); 63 testCase.testVerify_simple_failure(); 64 } 65 testVerify_simple_success()66public void testVerify_simple_success() throws Exception { 67 com.google.common.base.VerifyTest testCase = new com.google.common.base.VerifyTest(); 68 testCase.testVerify_simple_success(); 69 } 70 } 71