• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 ContiguousSetTest_gwt extends com.google.gwt.junit.client.GWTTestCase {
getModuleName()18 @Override public String getModuleName() {
19   return "com.google.common.collect.testModule";
20 }
testContains()21 public void testContains() throws Exception {
22   com.google.common.collect.ContiguousSetTest testCase = new com.google.common.collect.ContiguousSetTest();
23   testCase.testContains();
24 }
25 
testContainsAll()26 public void testContainsAll() throws Exception {
27   com.google.common.collect.ContiguousSetTest testCase = new com.google.common.collect.ContiguousSetTest();
28   testCase.testContainsAll();
29 }
30 
testCreate_empty()31 public void testCreate_empty() throws Exception {
32   com.google.common.collect.ContiguousSetTest testCase = new com.google.common.collect.ContiguousSetTest();
33   testCase.testCreate_empty();
34 }
35 
testCreate_noMax()36 public void testCreate_noMax() throws Exception {
37   com.google.common.collect.ContiguousSetTest testCase = new com.google.common.collect.ContiguousSetTest();
38   testCase.testCreate_noMax();
39 }
40 
testCreate_noMin()41 public void testCreate_noMin() throws Exception {
42   com.google.common.collect.ContiguousSetTest testCase = new com.google.common.collect.ContiguousSetTest();
43   testCase.testCreate_noMin();
44 }
45 
testEquals()46 public void testEquals() throws Exception {
47   com.google.common.collect.ContiguousSetTest testCase = new com.google.common.collect.ContiguousSetTest();
48   testCase.testEquals();
49 }
50 
testFirst()51 public void testFirst() throws Exception {
52   com.google.common.collect.ContiguousSetTest testCase = new com.google.common.collect.ContiguousSetTest();
53   testCase.testFirst();
54 }
55 
testHeadSet()56 public void testHeadSet() throws Exception {
57   com.google.common.collect.ContiguousSetTest testCase = new com.google.common.collect.ContiguousSetTest();
58   testCase.testHeadSet();
59 }
60 
testHeadSet_tooSmall()61 public void testHeadSet_tooSmall() throws Exception {
62   com.google.common.collect.ContiguousSetTest testCase = new com.google.common.collect.ContiguousSetTest();
63   testCase.testHeadSet_tooSmall();
64 }
65 
testIntersection()66 public void testIntersection() throws Exception {
67   com.google.common.collect.ContiguousSetTest testCase = new com.google.common.collect.ContiguousSetTest();
68   testCase.testIntersection();
69 }
70 
testIntersection_empty()71 public void testIntersection_empty() throws Exception {
72   com.google.common.collect.ContiguousSetTest testCase = new com.google.common.collect.ContiguousSetTest();
73   testCase.testIntersection_empty();
74 }
75 
testLast()76 public void testLast() throws Exception {
77   com.google.common.collect.ContiguousSetTest testCase = new com.google.common.collect.ContiguousSetTest();
78   testCase.testLast();
79 }
80 
testRange()81 public void testRange() throws Exception {
82   com.google.common.collect.ContiguousSetTest testCase = new com.google.common.collect.ContiguousSetTest();
83   testCase.testRange();
84 }
85 
testRange_unboundedRange()86 public void testRange_unboundedRange() throws Exception {
87   com.google.common.collect.ContiguousSetTest testCase = new com.google.common.collect.ContiguousSetTest();
88   testCase.testRange_unboundedRange();
89 }
90 
testSubSet()91 public void testSubSet() throws Exception {
92   com.google.common.collect.ContiguousSetTest testCase = new com.google.common.collect.ContiguousSetTest();
93   testCase.testSubSet();
94 }
95 
testSubSet_outOfOrder()96 public void testSubSet_outOfOrder() throws Exception {
97   com.google.common.collect.ContiguousSetTest testCase = new com.google.common.collect.ContiguousSetTest();
98   testCase.testSubSet_outOfOrder();
99 }
100 
testSubSet_tooLarge()101 public void testSubSet_tooLarge() throws Exception {
102   com.google.common.collect.ContiguousSetTest testCase = new com.google.common.collect.ContiguousSetTest();
103   testCase.testSubSet_tooLarge();
104 }
105 
testSubSet_tooSmall()106 public void testSubSet_tooSmall() throws Exception {
107   com.google.common.collect.ContiguousSetTest testCase = new com.google.common.collect.ContiguousSetTest();
108   testCase.testSubSet_tooSmall();
109 }
110 
testTailSet()111 public void testTailSet() throws Exception {
112   com.google.common.collect.ContiguousSetTest testCase = new com.google.common.collect.ContiguousSetTest();
113   testCase.testTailSet();
114 }
115 
testTailSet_tooLarge()116 public void testTailSet_tooLarge() throws Exception {
117   com.google.common.collect.ContiguousSetTest testCase = new com.google.common.collect.ContiguousSetTest();
118   testCase.testTailSet_tooLarge();
119 }
120 }
121