code
stringlengths
3
1.18M
language
stringclasses
1 value
/* * Copyright (C) 2011 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package java.util.concurrent; /** * Emulation of ExecutionException. * * @author Charles Fry */ public class ExecutionException extends Exception { protected ExecutionException() { } protected ExecutionException(String message) { super(message); } public ExecutionException(String message, Throwable cause) { super(message, cause); } public ExecutionException(Throwable cause) { super(cause); } }
Java
/* * Copyright (C) 2009 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package java.util.concurrent; import java.util.Map; /** * Minimal GWT emulation of a map providing atomic operations. * * @author Jesse Wilson */ public interface ConcurrentMap<K, V> extends Map<K, V> { V putIfAbsent(K key, V value); boolean remove(Object key, Object value); V replace(K key, V value); boolean replace(K key, V oldValue, V newValue); }
Java
/* * Copyright (C) 2011 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package java.util.concurrent.atomic; /** * GWT emulated version of {@link AtomicLong}. It's a thin wrapper * around the primitive {@code long}. * * @author Jige Yu */ public class AtomicLong extends Number implements java.io.Serializable { private long value; public AtomicLong(long initialValue) { this.value = initialValue; } public AtomicLong() { } public final long get() { return value; } public final void set(long newValue) { value = newValue; } public final void lazySet(long newValue) { set(newValue); } public final long getAndSet(long newValue) { long current = value; value = newValue; return current; } public final boolean compareAndSet(long expect, long update) { if (value == expect) { value = update; return true; } else { return false; } } public final long getAndIncrement() { return value++; } public final long getAndDecrement() { return value--; } public final long getAndAdd(long delta) { long current = value; value += delta; return current; } public final long incrementAndGet() { return ++value; } public final long decrementAndGet() { return --value; } public final long addAndGet(long delta) { value += delta; return value; } @Override public String toString() { return Long.toString(value); } public int intValue() { return (int) value; } public long longValue() { return value; } public float floatValue() { return (float) value; } public double doubleValue() { return (double) value; } }
Java
/* * Copyright (C) 2009 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package java.util.concurrent.atomic; /** * GWT emulated version of {@link AtomicInteger}. It's a thin wrapper * around the primitive {@code int}. * * @author Hayward Chan */ public class AtomicInteger extends Number implements java.io.Serializable { private int value; public AtomicInteger(int initialValue) { value = initialValue; } public AtomicInteger() { } public final int get() { return value; } public final void set(int newValue) { value = newValue; } public final void lazySet(int newValue) { set(newValue); } public final int getAndSet(int newValue) { int current = value; value = newValue; return current; } public final boolean compareAndSet(int expect, int update) { if (value == expect) { value = update; return true; } else { return false; } } public final int getAndIncrement() { return value++; } public final int getAndDecrement() { return value--; } public final int getAndAdd(int delta) { int current = value; value += delta; return current; } public final int incrementAndGet() { return ++value; } public final int decrementAndGet() { return --value; } public final int addAndGet(int delta) { value += delta; return value; } @Override public String toString() { return Integer.toString(value); } public int intValue() { return value; } public long longValue() { return (long) value; } public float floatValue() { return (float) value; } public double doubleValue() { return (double) value; } }
Java
/* * Copyright (C) 2009 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package java.util.concurrent; import java.util.AbstractMap; import java.util.Collections; import java.util.Enumeration; import java.util.HashMap; import java.util.Map; import java.util.Set; /** * Minimal emulation of {@link java.util.concurrent.ConcurrentHashMap}. * Note that javascript intepreter is <a * href="http://code.google.com/docreader/#p=google-web-toolkit-doc-1-5&t=DevGuideJavaCompatibility"> * single-threaded</a>, it is essentially a {@link java.util.HashMap}, * implementing the new methods introduced by {@link ConcurrentMap}. * * @author Hayward Chan */ public class ConcurrentHashMap<K, V> extends AbstractMap<K, V> implements ConcurrentMap<K, V> { private final Map<K, V> backingMap; public ConcurrentHashMap() { this.backingMap = new HashMap<K, V>(); } public ConcurrentHashMap(int initialCapacity) { this.backingMap = new HashMap<K, V>(initialCapacity); } public ConcurrentHashMap(int initialCapacity, float loadFactor) { this.backingMap = new HashMap<K, V>(initialCapacity, loadFactor); } public ConcurrentHashMap(Map<? extends K, ? extends V> t) { this.backingMap = new HashMap<K, V>(t); } public V putIfAbsent(K key, V value) { if (!containsKey(key)) { return put(key, value); } else { return get(key); } } public boolean remove(Object key, Object value) { if (containsKey(key) && get(key).equals(value)) { remove(key); return true; } else { return false; } } public boolean replace(K key, V oldValue, V newValue) { if (oldValue == null || newValue == null) { throw new NullPointerException(); } else if (containsKey(key) && get(key).equals(oldValue)) { put(key, newValue); return true; } else { return false; } } public V replace(K key, V value) { if (value == null) { throw new NullPointerException(); } else if (containsKey(key)) { return put(key, value); } else { return null; } } @Override public boolean containsKey(Object key) { if (key == null) { throw new NullPointerException(); } return backingMap.containsKey(key); } @Override public V get(Object key) { if (key == null) { throw new NullPointerException(); } return backingMap.get(key); } @Override public V put(K key, V value) { if (key == null || value == null) { throw new NullPointerException(); } return backingMap.put(key, value); } @Override public boolean containsValue(Object value) { if (value == null) { throw new NullPointerException(); } return backingMap.containsValue(value); } @Override public V remove(Object key) { if (key == null) { throw new NullPointerException(); } return backingMap.remove(key); } @Override public Set<Entry<K, V>> entrySet() { return backingMap.entrySet(); } public boolean contains(Object value) { return containsValue(value); } public Enumeration<V> elements() { return Collections.enumeration(values()); } public Enumeration<K> keys() { return Collections.enumeration(keySet()); } }
Java
/* * This file is a modified version of * http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/src/main/java/util/concurrent/TimeUnit.java * which contained the following notice: * * Written by Doug Lea with assistance from members of JCP JSR-166 * Expert Group and released to the public domain, as explained at * http://creativecommons.org/publicdomain/zero/1.0/ */ package java.util.concurrent; /** * GWT emulation of TimeUnit, created by removing unsupported operations from * Doug Lea's public domain version. */ public enum TimeUnit { NANOSECONDS { public long toNanos(long d) { return d; } public long toMicros(long d) { return d/(C1/C0); } public long toMillis(long d) { return d/(C2/C0); } public long toSeconds(long d) { return d/(C3/C0); } public long toMinutes(long d) { return d/(C4/C0); } public long toHours(long d) { return d/(C5/C0); } public long toDays(long d) { return d/(C6/C0); } public long convert(long d, TimeUnit u) { return u.toNanos(d); } int excessNanos(long d, long m) { return (int)(d - (m*C2)); } }, MICROSECONDS { public long toNanos(long d) { return x(d, C1/C0, MAX/(C1/C0)); } public long toMicros(long d) { return d; } public long toMillis(long d) { return d/(C2/C1); } public long toSeconds(long d) { return d/(C3/C1); } public long toMinutes(long d) { return d/(C4/C1); } public long toHours(long d) { return d/(C5/C1); } public long toDays(long d) { return d/(C6/C1); } public long convert(long d, TimeUnit u) { return u.toMicros(d); } int excessNanos(long d, long m) { return (int)((d*C1) - (m*C2)); } }, MILLISECONDS { public long toNanos(long d) { return x(d, C2/C0, MAX/(C2/C0)); } public long toMicros(long d) { return x(d, C2/C1, MAX/(C2/C1)); } public long toMillis(long d) { return d; } public long toSeconds(long d) { return d/(C3/C2); } public long toMinutes(long d) { return d/(C4/C2); } public long toHours(long d) { return d/(C5/C2); } public long toDays(long d) { return d/(C6/C2); } public long convert(long d, TimeUnit u) { return u.toMillis(d); } int excessNanos(long d, long m) { return 0; } }, SECONDS { public long toNanos(long d) { return x(d, C3/C0, MAX/(C3/C0)); } public long toMicros(long d) { return x(d, C3/C1, MAX/(C3/C1)); } public long toMillis(long d) { return x(d, C3/C2, MAX/(C3/C2)); } public long toSeconds(long d) { return d; } public long toMinutes(long d) { return d/(C4/C3); } public long toHours(long d) { return d/(C5/C3); } public long toDays(long d) { return d/(C6/C3); } public long convert(long d, TimeUnit u) { return u.toSeconds(d); } int excessNanos(long d, long m) { return 0; } }, MINUTES { public long toNanos(long d) { return x(d, C4/C0, MAX/(C4/C0)); } public long toMicros(long d) { return x(d, C4/C1, MAX/(C4/C1)); } public long toMillis(long d) { return x(d, C4/C2, MAX/(C4/C2)); } public long toSeconds(long d) { return x(d, C4/C3, MAX/(C4/C3)); } public long toMinutes(long d) { return d; } public long toHours(long d) { return d/(C5/C4); } public long toDays(long d) { return d/(C6/C4); } public long convert(long d, TimeUnit u) { return u.toMinutes(d); } int excessNanos(long d, long m) { return 0; } }, HOURS { public long toNanos(long d) { return x(d, C5/C0, MAX/(C5/C0)); } public long toMicros(long d) { return x(d, C5/C1, MAX/(C5/C1)); } public long toMillis(long d) { return x(d, C5/C2, MAX/(C5/C2)); } public long toSeconds(long d) { return x(d, C5/C3, MAX/(C5/C3)); } public long toMinutes(long d) { return x(d, C5/C4, MAX/(C5/C4)); } public long toHours(long d) { return d; } public long toDays(long d) { return d/(C6/C5); } public long convert(long d, TimeUnit u) { return u.toHours(d); } int excessNanos(long d, long m) { return 0; } }, DAYS { public long toNanos(long d) { return x(d, C6/C0, MAX/(C6/C0)); } public long toMicros(long d) { return x(d, C6/C1, MAX/(C6/C1)); } public long toMillis(long d) { return x(d, C6/C2, MAX/(C6/C2)); } public long toSeconds(long d) { return x(d, C6/C3, MAX/(C6/C3)); } public long toMinutes(long d) { return x(d, C6/C4, MAX/(C6/C4)); } public long toHours(long d) { return x(d, C6/C5, MAX/(C6/C5)); } public long toDays(long d) { return d; } public long convert(long d, TimeUnit u) { return u.toDays(d); } int excessNanos(long d, long m) { return 0; } }; // Handy constants for conversion methods static final long C0 = 1L; static final long C1 = C0 * 1000L; static final long C2 = C1 * 1000L; static final long C3 = C2 * 1000L; static final long C4 = C3 * 60L; static final long C5 = C4 * 60L; static final long C6 = C5 * 24L; static final long MAX = Long.MAX_VALUE; static long x(long d, long m, long over) { if (d > over) return Long.MAX_VALUE; if (d < -over) return Long.MIN_VALUE; return d * m; } // exceptions below changed from AbstractMethodError for GWT public long convert(long sourceDuration, TimeUnit sourceUnit) { throw new AssertionError(); } public long toNanos(long duration) { throw new AssertionError(); } public long toMicros(long duration) { throw new AssertionError(); } public long toMillis(long duration) { throw new AssertionError(); } public long toSeconds(long duration) { throw new AssertionError(); } public long toMinutes(long duration) { throw new AssertionError(); } public long toHours(long duration) { throw new AssertionError(); } public long toDays(long duration) { throw new AssertionError(); } abstract int excessNanos(long d, long m); }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.base; public class EnumsTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.base.testModule"; } public void testGetIfPresent() throws Exception { com.google.common.base.EnumsTest testCase = new com.google.common.base.EnumsTest(); testCase.testGetIfPresent(); } public void testGetIfPresent_caseSensitive() throws Exception { com.google.common.base.EnumsTest testCase = new com.google.common.base.EnumsTest(); testCase.testGetIfPresent_caseSensitive(); } public void testGetIfPresent_whenNoMatchingConstant() throws Exception { com.google.common.base.EnumsTest testCase = new com.google.common.base.EnumsTest(); testCase.testGetIfPresent_whenNoMatchingConstant(); } public void testValueOfFunction() throws Exception { com.google.common.base.EnumsTest testCase = new com.google.common.base.EnumsTest(); testCase.testValueOfFunction(); } public void testValueOfFunction_caseSensitive() throws Exception { com.google.common.base.EnumsTest testCase = new com.google.common.base.EnumsTest(); testCase.testValueOfFunction_caseSensitive(); } public void testValueOfFunction_equals() throws Exception { com.google.common.base.EnumsTest testCase = new com.google.common.base.EnumsTest(); testCase.testValueOfFunction_equals(); } public void testValueOfFunction_nullWhenNoMatchingConstant() throws Exception { com.google.common.base.EnumsTest testCase = new com.google.common.base.EnumsTest(); testCase.testValueOfFunction_nullWhenNoMatchingConstant(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.base; public class ToStringHelperTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.base.testModule"; } public void testConstructorLenient_anonymousClass() throws Exception { com.google.common.base.ToStringHelperTest testCase = new com.google.common.base.ToStringHelperTest(); testCase.testConstructorLenient_anonymousClass(); } public void testConstructorLenient_classObject() throws Exception { com.google.common.base.ToStringHelperTest testCase = new com.google.common.base.ToStringHelperTest(); testCase.testConstructorLenient_classObject(); } public void testConstructorLenient_innerClass() throws Exception { com.google.common.base.ToStringHelperTest testCase = new com.google.common.base.ToStringHelperTest(); testCase.testConstructorLenient_innerClass(); } public void testConstructorLenient_instance() throws Exception { com.google.common.base.ToStringHelperTest testCase = new com.google.common.base.ToStringHelperTest(); testCase.testConstructorLenient_instance(); } public void testConstructor_stringObject() throws Exception { com.google.common.base.ToStringHelperTest testCase = new com.google.common.base.ToStringHelperTest(); testCase.testConstructor_stringObject(); } public void testToStringHelperLenient_localInnerClass() throws Exception { com.google.common.base.ToStringHelperTest testCase = new com.google.common.base.ToStringHelperTest(); testCase.testToStringHelperLenient_localInnerClass(); } public void testToStringHelperLenient_localInnerNestedClass() throws Exception { com.google.common.base.ToStringHelperTest testCase = new com.google.common.base.ToStringHelperTest(); testCase.testToStringHelperLenient_localInnerNestedClass(); } public void testToStringHelperLenient_moreThanNineAnonymousClasses() throws Exception { com.google.common.base.ToStringHelperTest testCase = new com.google.common.base.ToStringHelperTest(); testCase.testToStringHelperLenient_moreThanNineAnonymousClasses(); } public void testToStringLenient_addValue() throws Exception { com.google.common.base.ToStringHelperTest testCase = new com.google.common.base.ToStringHelperTest(); testCase.testToStringLenient_addValue(); } public void testToStringLenient_addValueWithNullValue() throws Exception { com.google.common.base.ToStringHelperTest testCase = new com.google.common.base.ToStringHelperTest(); testCase.testToStringLenient_addValueWithNullValue(); } public void testToStringLenient_addWithNullValue() throws Exception { com.google.common.base.ToStringHelperTest testCase = new com.google.common.base.ToStringHelperTest(); testCase.testToStringLenient_addWithNullValue(); } public void testToStringLenient_complexFields() throws Exception { com.google.common.base.ToStringHelperTest testCase = new com.google.common.base.ToStringHelperTest(); testCase.testToStringLenient_complexFields(); } public void testToStringLenient_nullInteger() throws Exception { com.google.common.base.ToStringHelperTest testCase = new com.google.common.base.ToStringHelperTest(); testCase.testToStringLenient_nullInteger(); } public void testToStringLenient_oneField() throws Exception { com.google.common.base.ToStringHelperTest testCase = new com.google.common.base.ToStringHelperTest(); testCase.testToStringLenient_oneField(); } public void testToStringLenient_oneIntegerField() throws Exception { com.google.common.base.ToStringHelperTest testCase = new com.google.common.base.ToStringHelperTest(); testCase.testToStringLenient_oneIntegerField(); } public void testToString_addWithNullName() throws Exception { com.google.common.base.ToStringHelperTest testCase = new com.google.common.base.ToStringHelperTest(); testCase.testToString_addWithNullName(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.base; public class CharsetsTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.base.testModule"; } public void testUtf8() throws Exception { com.google.common.base.CharsetsTest testCase = new com.google.common.base.CharsetsTest(); testCase.testUtf8(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.base; public class PredicatesTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.base.testModule"; } public void testAlwaysFalse_apply() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testAlwaysFalse_apply(); } public void testAlwaysFalse_equality() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testAlwaysFalse_equality(); } public void testAlwaysTrue_apply() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testAlwaysTrue_apply(); } public void testAlwaysTrue_equality() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testAlwaysTrue_equality(); } public void testAnd_applyBinary() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testAnd_applyBinary(); } public void testAnd_applyIterable() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testAnd_applyIterable(); } public void testAnd_applyNoArgs() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testAnd_applyNoArgs(); } public void testAnd_applyOneArg() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testAnd_applyOneArg(); } public void testAnd_applyTernary() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testAnd_applyTernary(); } public void testAnd_arrayDefensivelyCopied() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testAnd_arrayDefensivelyCopied(); } public void testAnd_equalityBinary() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testAnd_equalityBinary(); } public void testAnd_equalityIterable() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testAnd_equalityIterable(); } public void testAnd_equalityNoArgs() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testAnd_equalityNoArgs(); } public void testAnd_equalityOneArg() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testAnd_equalityOneArg(); } public void testAnd_equalityTernary() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testAnd_equalityTernary(); } public void testAnd_iterableDefensivelyCopied() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testAnd_iterableDefensivelyCopied(); } public void testAnd_listDefensivelyCopied() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testAnd_listDefensivelyCopied(); } public void testCompose() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testCompose(); } public void testHashCodeForBooleanOperations() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testHashCodeForBooleanOperations(); } public void testIn_apply() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testIn_apply(); } public void testIn_compilesWithExplicitSupertype() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testIn_compilesWithExplicitSupertype(); } public void testIn_equality() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testIn_equality(); } public void testIn_handlesClassCastException() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testIn_handlesClassCastException(); } public void testIn_handlesNullPointerException() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testIn_handlesNullPointerException(); } public void testIsEqualToNull_apply() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testIsEqualToNull_apply(); } public void testIsEqualToNull_equality() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testIsEqualToNull_equality(); } public void testIsEqualTo_apply() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testIsEqualTo_apply(); } public void testIsEqualTo_equality() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testIsEqualTo_equality(); } public void testIsNull_apply() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testIsNull_apply(); } public void testIsNull_equality() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testIsNull_equality(); } public void testNotNull_apply() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testNotNull_apply(); } public void testNotNull_equality() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testNotNull_equality(); } public void testNot_apply() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testNot_apply(); } public void testNot_equality() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testNot_equality(); } public void testNot_equalityForNotOfKnownValues() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testNot_equalityForNotOfKnownValues(); } public void testOr_applyBinary() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testOr_applyBinary(); } public void testOr_applyIterable() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testOr_applyIterable(); } public void testOr_applyNoArgs() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testOr_applyNoArgs(); } public void testOr_applyOneArg() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testOr_applyOneArg(); } public void testOr_applyTernary() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testOr_applyTernary(); } public void testOr_arrayDefensivelyCopied() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testOr_arrayDefensivelyCopied(); } public void testOr_equalityBinary() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testOr_equalityBinary(); } public void testOr_equalityIterable() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testOr_equalityIterable(); } public void testOr_equalityNoArgs() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testOr_equalityNoArgs(); } public void testOr_equalityOneArg() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testOr_equalityOneArg(); } public void testOr_equalityTernary() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testOr_equalityTernary(); } public void testOr_iterableDefensivelyCopied() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testOr_iterableDefensivelyCopied(); } public void testOr_listDefensivelyCopied() throws Exception { com.google.common.base.PredicatesTest testCase = new com.google.common.base.PredicatesTest(); testCase.testOr_listDefensivelyCopied(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.base; public class OptionalTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.base.testModule"; } public void testAbsent() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testAbsent(); } public void testAsSet_absent() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testAsSet_absent(); } public void testAsSet_absentIsImmutable() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testAsSet_absentIsImmutable(); } public void testAsSet_present() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testAsSet_present(); } public void testAsSet_presentIsImmutable() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testAsSet_presentIsImmutable(); } public void testEqualsAndHashCode_absent() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testEqualsAndHashCode_absent(); } public void testEqualsAndHashCode_present() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testEqualsAndHashCode_present(); } public void testFromNullable() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testFromNullable(); } public void testFromNullable_null() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testFromNullable_null(); } public void testGet_absent() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testGet_absent(); } public void testGet_present() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testGet_present(); } public void testIsPresent_no() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testIsPresent_no(); } public void testIsPresent_yes() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testIsPresent_yes(); } public void testOf() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testOf(); } public void testOf_null() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testOf_null(); } public void testOrNull_absent() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testOrNull_absent(); } public void testOrNull_present() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testOrNull_present(); } public void testOr_Optional_absent() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testOr_Optional_absent(); } public void testOr_Optional_present() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testOr_Optional_present(); } public void testOr_T_absent() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testOr_T_absent(); } public void testOr_T_present() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testOr_T_present(); } public void testOr_nullSupplier_absent() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testOr_nullSupplier_absent(); } public void testOr_nullSupplier_present() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testOr_nullSupplier_present(); } public void testOr_supplier_absent() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testOr_supplier_absent(); } public void testOr_supplier_present() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testOr_supplier_present(); } public void testPresentInstances_allAbsent() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testPresentInstances_allAbsent(); } public void testPresentInstances_allPresent() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testPresentInstances_allPresent(); } public void testPresentInstances_callingIteratorTwice() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testPresentInstances_callingIteratorTwice(); } public void testPresentInstances_somePresent() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testPresentInstances_somePresent(); } public void testPresentInstances_wildcards() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testPresentInstances_wildcards(); } public void testSampleCodeError1() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testSampleCodeError1(); } public void testSampleCodeError2() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testSampleCodeError2(); } public void testSampleCodeFine1() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testSampleCodeFine1(); } public void testSampleCodeFine2() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testSampleCodeFine2(); } public void testToString_absent() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testToString_absent(); } public void testToString_present() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testToString_present(); } public void testTransform_absent() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testTransform_absent(); } public void testTransform_abssent_functionReturnsNull() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testTransform_abssent_functionReturnsNull(); } public void testTransform_presentIdentity() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testTransform_presentIdentity(); } public void testTransform_presentToString() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testTransform_presentToString(); } public void testTransform_present_functionReturnsNull() throws Exception { com.google.common.base.OptionalTest testCase = new com.google.common.base.OptionalTest(); testCase.testTransform_present_functionReturnsNull(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.base; public class JoinerTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.base.testModule"; } public void testEntries() throws Exception { com.google.common.base.JoinerTest testCase = new com.google.common.base.JoinerTest(); testCase.testEntries(); } public void testMap() throws Exception { com.google.common.base.JoinerTest testCase = new com.google.common.base.JoinerTest(); testCase.testMap(); } public void testNoSpecialNullBehavior() throws Exception { com.google.common.base.JoinerTest testCase = new com.google.common.base.JoinerTest(); testCase.testNoSpecialNullBehavior(); } public void testOnCharOverride() throws Exception { com.google.common.base.JoinerTest testCase = new com.google.common.base.JoinerTest(); testCase.testOnCharOverride(); } public void testSkipNulls() throws Exception { com.google.common.base.JoinerTest testCase = new com.google.common.base.JoinerTest(); testCase.testSkipNulls(); } public void testUseForNull() throws Exception { com.google.common.base.JoinerTest testCase = new com.google.common.base.JoinerTest(); testCase.testUseForNull(); } public void test_skipNulls_onMap() throws Exception { com.google.common.base.JoinerTest testCase = new com.google.common.base.JoinerTest(); testCase.test_skipNulls_onMap(); } public void test_skipNulls_useForNull() throws Exception { com.google.common.base.JoinerTest testCase = new com.google.common.base.JoinerTest(); testCase.test_skipNulls_useForNull(); } public void test_useForNull_skipNulls() throws Exception { com.google.common.base.JoinerTest testCase = new com.google.common.base.JoinerTest(); testCase.test_useForNull_skipNulls(); } public void test_useForNull_twice() throws Exception { com.google.common.base.JoinerTest testCase = new com.google.common.base.JoinerTest(); testCase.test_useForNull_twice(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.base; public class StringsTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.base.testModule"; } public void testCommonPrefix() throws Exception { com.google.common.base.StringsTest testCase = new com.google.common.base.StringsTest(); testCase.testCommonPrefix(); } public void testCommonSuffix() throws Exception { com.google.common.base.StringsTest testCase = new com.google.common.base.StringsTest(); testCase.testCommonSuffix(); } public void testEmptyToNull() throws Exception { com.google.common.base.StringsTest testCase = new com.google.common.base.StringsTest(); testCase.testEmptyToNull(); } public void testIsNullOrEmpty() throws Exception { com.google.common.base.StringsTest testCase = new com.google.common.base.StringsTest(); testCase.testIsNullOrEmpty(); } public void testNullToEmpty() throws Exception { com.google.common.base.StringsTest testCase = new com.google.common.base.StringsTest(); testCase.testNullToEmpty(); } public void testPadEnd_negativeMinLength() throws Exception { com.google.common.base.StringsTest testCase = new com.google.common.base.StringsTest(); testCase.testPadEnd_negativeMinLength(); } public void testPadEnd_noPadding() throws Exception { com.google.common.base.StringsTest testCase = new com.google.common.base.StringsTest(); testCase.testPadEnd_noPadding(); } public void testPadEnd_null() throws Exception { com.google.common.base.StringsTest testCase = new com.google.common.base.StringsTest(); testCase.testPadEnd_null(); } public void testPadEnd_somePadding() throws Exception { com.google.common.base.StringsTest testCase = new com.google.common.base.StringsTest(); testCase.testPadEnd_somePadding(); } public void testPadStart_negativeMinLength() throws Exception { com.google.common.base.StringsTest testCase = new com.google.common.base.StringsTest(); testCase.testPadStart_negativeMinLength(); } public void testPadStart_noPadding() throws Exception { com.google.common.base.StringsTest testCase = new com.google.common.base.StringsTest(); testCase.testPadStart_noPadding(); } public void testPadStart_null() throws Exception { com.google.common.base.StringsTest testCase = new com.google.common.base.StringsTest(); testCase.testPadStart_null(); } public void testPadStart_somePadding() throws Exception { com.google.common.base.StringsTest testCase = new com.google.common.base.StringsTest(); testCase.testPadStart_somePadding(); } public void testRepeat() throws Exception { com.google.common.base.StringsTest testCase = new com.google.common.base.StringsTest(); testCase.testRepeat(); } public void testRepeat_null() throws Exception { com.google.common.base.StringsTest testCase = new com.google.common.base.StringsTest(); testCase.testRepeat_null(); } public void testValidSurrogatePairAt() throws Exception { com.google.common.base.StringsTest testCase = new com.google.common.base.StringsTest(); testCase.testValidSurrogatePairAt(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.base; public class CharMatcherTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.base.testModule"; } public void testAllMatches() throws Exception { com.google.common.base.CharMatcherTest testCase = new com.google.common.base.CharMatcherTest(); testCase.testAllMatches(); } public void testAnyAndNone_logicalOps() throws Exception { com.google.common.base.CharMatcherTest testCase = new com.google.common.base.CharMatcherTest(); testCase.testAnyAndNone_logicalOps(); } public void testCollapse() throws Exception { com.google.common.base.CharMatcherTest testCase = new com.google.common.base.CharMatcherTest(); testCase.testCollapse(); } public void testCollapse_any() throws Exception { com.google.common.base.CharMatcherTest testCase = new com.google.common.base.CharMatcherTest(); testCase.testCollapse_any(); } public void testEmpty() throws Exception { com.google.common.base.CharMatcherTest testCase = new com.google.common.base.CharMatcherTest(); testCase.testEmpty(); } public void testGeneral() throws Exception { com.google.common.base.CharMatcherTest testCase = new com.google.common.base.CharMatcherTest(); testCase.testGeneral(); } public void testNoMatches() throws Exception { com.google.common.base.CharMatcherTest testCase = new com.google.common.base.CharMatcherTest(); testCase.testNoMatches(); } public void testPrecomputedOptimizations() throws Exception { com.google.common.base.CharMatcherTest testCase = new com.google.common.base.CharMatcherTest(); testCase.testPrecomputedOptimizations(); } public void testReplaceFrom() throws Exception { com.google.common.base.CharMatcherTest testCase = new com.google.common.base.CharMatcherTest(); testCase.testReplaceFrom(); } public void testToString() throws Exception { com.google.common.base.CharMatcherTest testCase = new com.google.common.base.CharMatcherTest(); testCase.testToString(); } public void testTrimAndCollapse() throws Exception { com.google.common.base.CharMatcherTest testCase = new com.google.common.base.CharMatcherTest(); testCase.testTrimAndCollapse(); } public void testTrimFrom() throws Exception { com.google.common.base.CharMatcherTest testCase = new com.google.common.base.CharMatcherTest(); testCase.testTrimFrom(); } public void testTrimLeadingFrom() throws Exception { com.google.common.base.CharMatcherTest testCase = new com.google.common.base.CharMatcherTest(); testCase.testTrimLeadingFrom(); } public void testTrimTrailingFrom() throws Exception { com.google.common.base.CharMatcherTest testCase = new com.google.common.base.CharMatcherTest(); testCase.testTrimTrailingFrom(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.base; public class AbstractIteratorTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.base.testModule"; } public void testCantRemove() throws Exception { com.google.common.base.AbstractIteratorTest testCase = new com.google.common.base.AbstractIteratorTest(); testCase.testCantRemove(); } public void testDefaultBehaviorOfNextAndHasNext() throws Exception { com.google.common.base.AbstractIteratorTest testCase = new com.google.common.base.AbstractIteratorTest(); testCase.testDefaultBehaviorOfNextAndHasNext(); } public void testException() throws Exception { com.google.common.base.AbstractIteratorTest testCase = new com.google.common.base.AbstractIteratorTest(); testCase.testException(); } public void testExceptionAfterEndOfData() throws Exception { com.google.common.base.AbstractIteratorTest testCase = new com.google.common.base.AbstractIteratorTest(); testCase.testExceptionAfterEndOfData(); } public void testReentrantHasNext() throws Exception { com.google.common.base.AbstractIteratorTest testCase = new com.google.common.base.AbstractIteratorTest(); testCase.testReentrantHasNext(); } public void testSneakyThrow() throws Exception { com.google.common.base.AbstractIteratorTest testCase = new com.google.common.base.AbstractIteratorTest(); testCase.testSneakyThrow(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.base; public class CaseFormatTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.base.testModule"; } public void testIdentity() throws Exception { com.google.common.base.CaseFormatTest testCase = new com.google.common.base.CaseFormatTest(); testCase.testIdentity(); } public void testLowerCamelToLowerCamel() throws Exception { com.google.common.base.CaseFormatTest testCase = new com.google.common.base.CaseFormatTest(); testCase.testLowerCamelToLowerCamel(); } public void testLowerCamelToLowerHyphen() throws Exception { com.google.common.base.CaseFormatTest testCase = new com.google.common.base.CaseFormatTest(); testCase.testLowerCamelToLowerHyphen(); } public void testLowerCamelToLowerUnderscore() throws Exception { com.google.common.base.CaseFormatTest testCase = new com.google.common.base.CaseFormatTest(); testCase.testLowerCamelToLowerUnderscore(); } public void testLowerCamelToUpperCamel() throws Exception { com.google.common.base.CaseFormatTest testCase = new com.google.common.base.CaseFormatTest(); testCase.testLowerCamelToUpperCamel(); } public void testLowerCamelToUpperUnderscore() throws Exception { com.google.common.base.CaseFormatTest testCase = new com.google.common.base.CaseFormatTest(); testCase.testLowerCamelToUpperUnderscore(); } public void testLowerHyphenToLowerCamel() throws Exception { com.google.common.base.CaseFormatTest testCase = new com.google.common.base.CaseFormatTest(); testCase.testLowerHyphenToLowerCamel(); } public void testLowerHyphenToLowerHyphen() throws Exception { com.google.common.base.CaseFormatTest testCase = new com.google.common.base.CaseFormatTest(); testCase.testLowerHyphenToLowerHyphen(); } public void testLowerHyphenToLowerUnderscore() throws Exception { com.google.common.base.CaseFormatTest testCase = new com.google.common.base.CaseFormatTest(); testCase.testLowerHyphenToLowerUnderscore(); } public void testLowerHyphenToUpperCamel() throws Exception { com.google.common.base.CaseFormatTest testCase = new com.google.common.base.CaseFormatTest(); testCase.testLowerHyphenToUpperCamel(); } public void testLowerHyphenToUpperUnderscore() throws Exception { com.google.common.base.CaseFormatTest testCase = new com.google.common.base.CaseFormatTest(); testCase.testLowerHyphenToUpperUnderscore(); } public void testLowerUnderscoreToLowerCamel() throws Exception { com.google.common.base.CaseFormatTest testCase = new com.google.common.base.CaseFormatTest(); testCase.testLowerUnderscoreToLowerCamel(); } public void testLowerUnderscoreToLowerHyphen() throws Exception { com.google.common.base.CaseFormatTest testCase = new com.google.common.base.CaseFormatTest(); testCase.testLowerUnderscoreToLowerHyphen(); } public void testLowerUnderscoreToLowerUnderscore() throws Exception { com.google.common.base.CaseFormatTest testCase = new com.google.common.base.CaseFormatTest(); testCase.testLowerUnderscoreToLowerUnderscore(); } public void testLowerUnderscoreToUpperCamel() throws Exception { com.google.common.base.CaseFormatTest testCase = new com.google.common.base.CaseFormatTest(); testCase.testLowerUnderscoreToUpperCamel(); } public void testLowerUnderscoreToUpperUnderscore() throws Exception { com.google.common.base.CaseFormatTest testCase = new com.google.common.base.CaseFormatTest(); testCase.testLowerUnderscoreToUpperUnderscore(); } public void testUpperCamelToLowerCamel() throws Exception { com.google.common.base.CaseFormatTest testCase = new com.google.common.base.CaseFormatTest(); testCase.testUpperCamelToLowerCamel(); } public void testUpperCamelToLowerHyphen() throws Exception { com.google.common.base.CaseFormatTest testCase = new com.google.common.base.CaseFormatTest(); testCase.testUpperCamelToLowerHyphen(); } public void testUpperCamelToLowerUnderscore() throws Exception { com.google.common.base.CaseFormatTest testCase = new com.google.common.base.CaseFormatTest(); testCase.testUpperCamelToLowerUnderscore(); } public void testUpperCamelToUpperCamel() throws Exception { com.google.common.base.CaseFormatTest testCase = new com.google.common.base.CaseFormatTest(); testCase.testUpperCamelToUpperCamel(); } public void testUpperCamelToUpperUnderscore() throws Exception { com.google.common.base.CaseFormatTest testCase = new com.google.common.base.CaseFormatTest(); testCase.testUpperCamelToUpperUnderscore(); } public void testUpperUnderscoreToLowerCamel() throws Exception { com.google.common.base.CaseFormatTest testCase = new com.google.common.base.CaseFormatTest(); testCase.testUpperUnderscoreToLowerCamel(); } public void testUpperUnderscoreToLowerHyphen() throws Exception { com.google.common.base.CaseFormatTest testCase = new com.google.common.base.CaseFormatTest(); testCase.testUpperUnderscoreToLowerHyphen(); } public void testUpperUnderscoreToLowerUnderscore() throws Exception { com.google.common.base.CaseFormatTest testCase = new com.google.common.base.CaseFormatTest(); testCase.testUpperUnderscoreToLowerUnderscore(); } public void testUpperUnderscoreToUpperCamel() throws Exception { com.google.common.base.CaseFormatTest testCase = new com.google.common.base.CaseFormatTest(); testCase.testUpperUnderscoreToUpperCamel(); } public void testUpperUnderscoreToUpperUnderscore() throws Exception { com.google.common.base.CaseFormatTest testCase = new com.google.common.base.CaseFormatTest(); testCase.testUpperUnderscoreToUpperUnderscore(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.base; public class SuppliersTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.base.testModule"; } public void testCompose() throws Exception { com.google.common.base.SuppliersTest testCase = new com.google.common.base.SuppliersTest(); testCase.testCompose(); } public void testComposeWithLists() throws Exception { com.google.common.base.SuppliersTest testCase = new com.google.common.base.SuppliersTest(); testCase.testComposeWithLists(); } public void testCompose_equals() throws Exception { com.google.common.base.SuppliersTest testCase = new com.google.common.base.SuppliersTest(); testCase.testCompose_equals(); } public void testMemoize() throws Exception { com.google.common.base.SuppliersTest testCase = new com.google.common.base.SuppliersTest(); testCase.testMemoize(); } public void testMemoizeExceptionThrown() throws Exception { com.google.common.base.SuppliersTest testCase = new com.google.common.base.SuppliersTest(); testCase.testMemoizeExceptionThrown(); } public void testMemoize_redudantly() throws Exception { com.google.common.base.SuppliersTest testCase = new com.google.common.base.SuppliersTest(); testCase.testMemoize_redudantly(); } public void testOfInstanceSuppliesNull() throws Exception { com.google.common.base.SuppliersTest testCase = new com.google.common.base.SuppliersTest(); testCase.testOfInstanceSuppliesNull(); } public void testOfInstanceSuppliesSameInstance() throws Exception { com.google.common.base.SuppliersTest testCase = new com.google.common.base.SuppliersTest(); testCase.testOfInstanceSuppliesSameInstance(); } public void testOfInstance_equals() throws Exception { com.google.common.base.SuppliersTest testCase = new com.google.common.base.SuppliersTest(); testCase.testOfInstance_equals(); } public void testSupplierFunction() throws Exception { com.google.common.base.SuppliersTest testCase = new com.google.common.base.SuppliersTest(); testCase.testSupplierFunction(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.base; public class AsciiTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.base.testModule"; } public void testCharsIgnored() throws Exception { com.google.common.base.AsciiTest testCase = new com.google.common.base.AsciiTest(); testCase.testCharsIgnored(); } public void testCharsLower() throws Exception { com.google.common.base.AsciiTest testCase = new com.google.common.base.AsciiTest(); testCase.testCharsLower(); } public void testCharsUpper() throws Exception { com.google.common.base.AsciiTest testCase = new com.google.common.base.AsciiTest(); testCase.testCharsUpper(); } public void testToLowerCase() throws Exception { com.google.common.base.AsciiTest testCase = new com.google.common.base.AsciiTest(); testCase.testToLowerCase(); } public void testToUpperCase() throws Exception { com.google.common.base.AsciiTest testCase = new com.google.common.base.AsciiTest(); testCase.testToUpperCase(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.base; public class ObjectsTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.base.testModule"; } public void testEqual() throws Exception { com.google.common.base.ObjectsTest testCase = new com.google.common.base.ObjectsTest(); testCase.testEqual(); } public void testFirstNonNull_throwsNullPointerException() throws Exception { com.google.common.base.ObjectsTest testCase = new com.google.common.base.ObjectsTest(); testCase.testFirstNonNull_throwsNullPointerException(); } public void testFirstNonNull_withNonNull() throws Exception { com.google.common.base.ObjectsTest testCase = new com.google.common.base.ObjectsTest(); testCase.testFirstNonNull_withNonNull(); } public void testHashCode() throws Exception { com.google.common.base.ObjectsTest testCase = new com.google.common.base.ObjectsTest(); testCase.testHashCode(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.base; public class SplitterTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.base.testModule"; } public void testCharacterSimpleSplit() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testCharacterSimpleSplit(); } public void testCharacterSimpleSplitToList() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testCharacterSimpleSplitToList(); } public void testCharacterSimpleSplitWithNoDelimiter() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testCharacterSimpleSplitWithNoDelimiter(); } public void testCharacterSplitEmptyToken() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testCharacterSplitEmptyToken(); } public void testCharacterSplitEmptyTokenOmitEmptyStrings() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testCharacterSplitEmptyTokenOmitEmptyStrings(); } public void testCharacterSplitOnEmptyString() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testCharacterSplitOnEmptyString(); } public void testCharacterSplitOnEmptyStringOmitEmptyStrings() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testCharacterSplitOnEmptyStringOmitEmptyStrings(); } public void testCharacterSplitOnOnlyDelimiter() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testCharacterSplitOnOnlyDelimiter(); } public void testCharacterSplitOnOnlyDelimitersOmitEmptyStrings() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testCharacterSplitOnOnlyDelimitersOmitEmptyStrings(); } public void testCharacterSplitWithDoubleDelimiter() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testCharacterSplitWithDoubleDelimiter(); } public void testCharacterSplitWithDoubleDelimiterAndSpace() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testCharacterSplitWithDoubleDelimiterAndSpace(); } public void testCharacterSplitWithDoubleDelimiterOmitEmptyStrings() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testCharacterSplitWithDoubleDelimiterOmitEmptyStrings(); } public void testCharacterSplitWithLeadingDelimiter() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testCharacterSplitWithLeadingDelimiter(); } public void testCharacterSplitWithMatcherDelimiter() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testCharacterSplitWithMatcherDelimiter(); } public void testCharacterSplitWithMulitpleLetters() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testCharacterSplitWithMulitpleLetters(); } public void testCharacterSplitWithTrailingDelimiter() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testCharacterSplitWithTrailingDelimiter(); } public void testCharacterSplitWithTrim() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testCharacterSplitWithTrim(); } public void testFixedLengthSimpleSplit() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testFixedLengthSimpleSplit(); } public void testFixedLengthSplitEmptyString() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testFixedLengthSplitEmptyString(); } public void testFixedLengthSplitEmptyStringWithOmitEmptyStrings() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testFixedLengthSplitEmptyStringWithOmitEmptyStrings(); } public void testFixedLengthSplitEqualChunkLength() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testFixedLengthSplitEqualChunkLength(); } public void testFixedLengthSplitIntoChars() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testFixedLengthSplitIntoChars(); } public void testFixedLengthSplitNegativeChunkLen() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testFixedLengthSplitNegativeChunkLen(); } public void testFixedLengthSplitOnlyOneChunk() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testFixedLengthSplitOnlyOneChunk(); } public void testFixedLengthSplitSmallerString() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testFixedLengthSplitSmallerString(); } public void testFixedLengthSplitZeroChunkLen() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testFixedLengthSplitZeroChunkLen(); } public void testInvalidZeroLimit() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testInvalidZeroLimit(); } public void testLimitExtraSeparators() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testLimitExtraSeparators(); } public void testLimitExtraSeparatorsOmitEmpty() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testLimitExtraSeparatorsOmitEmpty(); } public void testLimitExtraSeparatorsOmitEmpty3() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testLimitExtraSeparatorsOmitEmpty3(); } public void testLimitExtraSeparatorsTrim() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testLimitExtraSeparatorsTrim(); } public void testLimitExtraSeparatorsTrim1() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testLimitExtraSeparatorsTrim1(); } public void testLimitExtraSeparatorsTrim1Empty() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testLimitExtraSeparatorsTrim1Empty(); } public void testLimitExtraSeparatorsTrim1EmptyOmit() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testLimitExtraSeparatorsTrim1EmptyOmit(); } public void testLimitExtraSeparatorsTrim1NoOmit() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testLimitExtraSeparatorsTrim1NoOmit(); } public void testLimitExtraSeparatorsTrim3() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testLimitExtraSeparatorsTrim3(); } public void testLimitFixedLength() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testLimitFixedLength(); } public void testLimitLarge() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testLimitLarge(); } public void testLimitOne() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testLimitOne(); } public void testLimitSeparator() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testLimitSeparator(); } public void testMapSplitter_CharacterSeparator() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testMapSplitter_CharacterSeparator(); } public void testMapSplitter_duplicateKeys() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testMapSplitter_duplicateKeys(); } public void testMapSplitter_emptySeparator() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testMapSplitter_emptySeparator(); } public void testMapSplitter_malformedEntry() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testMapSplitter_malformedEntry(); } public void testMapSplitter_multiCharacterSeparator() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testMapSplitter_multiCharacterSeparator(); } public void testMapSplitter_notTrimmed() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testMapSplitter_notTrimmed(); } public void testMapSplitter_orderedResults() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testMapSplitter_orderedResults(); } public void testMapSplitter_trimmedBoth() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testMapSplitter_trimmedBoth(); } public void testMapSplitter_trimmedEntries() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testMapSplitter_trimmedEntries(); } public void testMapSplitter_trimmedKeyValue() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testMapSplitter_trimmedKeyValue(); } public void testSplitNullString() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testSplitNullString(); } public void testSplitterIterableIsLazy_char() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testSplitterIterableIsLazy_char(); } public void testSplitterIterableIsLazy_string() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testSplitterIterableIsLazy_string(); } public void testSplitterIterableIsUnmodifiable_char() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testSplitterIterableIsUnmodifiable_char(); } public void testSplitterIterableIsUnmodifiable_string() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testSplitterIterableIsUnmodifiable_string(); } public void testStringSimpleSplit() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testStringSimpleSplit(); } public void testStringSimpleSplitWithNoDelimiter() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testStringSimpleSplitWithNoDelimiter(); } public void testStringSplitEmptyToken() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testStringSplitEmptyToken(); } public void testStringSplitEmptyTokenOmitEmptyStrings() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testStringSplitEmptyTokenOmitEmptyStrings(); } public void testStringSplitOnEmptyString() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testStringSplitOnEmptyString(); } public void testStringSplitOnEmptyStringOmitEmptyString() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testStringSplitOnEmptyStringOmitEmptyString(); } public void testStringSplitOnOnlyDelimiter() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testStringSplitOnOnlyDelimiter(); } public void testStringSplitOnOnlyDelimitersOmitEmptyStrings() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testStringSplitOnOnlyDelimitersOmitEmptyStrings(); } public void testStringSplitWithDelimiterSubstringInValue() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testStringSplitWithDelimiterSubstringInValue(); } public void testStringSplitWithDoubleDelimiter() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testStringSplitWithDoubleDelimiter(); } public void testStringSplitWithDoubleDelimiterAndSpace() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testStringSplitWithDoubleDelimiterAndSpace(); } public void testStringSplitWithDoubleDelimiterOmitEmptyStrings() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testStringSplitWithDoubleDelimiterOmitEmptyStrings(); } public void testStringSplitWithEmptyString() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testStringSplitWithEmptyString(); } public void testStringSplitWithLeadingDelimiter() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testStringSplitWithLeadingDelimiter(); } public void testStringSplitWithLongDelimiter() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testStringSplitWithLongDelimiter(); } public void testStringSplitWithLongLeadingDelimiter() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testStringSplitWithLongLeadingDelimiter(); } public void testStringSplitWithLongTrailingDelimiter() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testStringSplitWithLongTrailingDelimiter(); } public void testStringSplitWithMultipleLetters() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testStringSplitWithMultipleLetters(); } public void testStringSplitWithTrailingDelimiter() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testStringSplitWithTrailingDelimiter(); } public void testStringSplitWithTrim() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testStringSplitWithTrim(); } public void testToString() throws Exception { com.google.common.base.SplitterTest testCase = new com.google.common.base.SplitterTest(); testCase.testToString(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.base; public class EquivalenceTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.base.testModule"; } public void testEquals() throws Exception { com.google.common.base.EquivalenceTest testCase = new com.google.common.base.EquivalenceTest(); testCase.testEquals(); } public void testEqualsEquivalent() throws Exception { com.google.common.base.EquivalenceTest testCase = new com.google.common.base.EquivalenceTest(); testCase.testEqualsEquivalent(); } public void testEquivalentTo() throws Exception { com.google.common.base.EquivalenceTest testCase = new com.google.common.base.EquivalenceTest(); testCase.testEquivalentTo(); } public void testIdentityEquivalent() throws Exception { com.google.common.base.EquivalenceTest testCase = new com.google.common.base.EquivalenceTest(); testCase.testIdentityEquivalent(); } public void testOnResultOf() throws Exception { com.google.common.base.EquivalenceTest testCase = new com.google.common.base.EquivalenceTest(); testCase.testOnResultOf(); } public void testOnResultOf_equals() throws Exception { com.google.common.base.EquivalenceTest testCase = new com.google.common.base.EquivalenceTest(); testCase.testOnResultOf_equals(); } public void testPairwiseEquivalent() throws Exception { com.google.common.base.EquivalenceTest testCase = new com.google.common.base.EquivalenceTest(); testCase.testPairwiseEquivalent(); } public void testPairwiseEquivalent_equals() throws Exception { com.google.common.base.EquivalenceTest testCase = new com.google.common.base.EquivalenceTest(); testCase.testPairwiseEquivalent_equals(); } public void testWrap() throws Exception { com.google.common.base.EquivalenceTest testCase = new com.google.common.base.EquivalenceTest(); testCase.testWrap(); } public void testWrap_get() throws Exception { com.google.common.base.EquivalenceTest testCase = new com.google.common.base.EquivalenceTest(); testCase.testWrap_get(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.base; public class PreconditionsTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.base.testModule"; } public void testCheckArgument_complexMessage_failure() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckArgument_complexMessage_failure(); } public void testCheckArgument_complexMessage_success() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckArgument_complexMessage_success(); } public void testCheckArgument_nullMessage_failure() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckArgument_nullMessage_failure(); } public void testCheckArgument_simpleMessage_failure() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckArgument_simpleMessage_failure(); } public void testCheckArgument_simpleMessage_success() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckArgument_simpleMessage_success(); } public void testCheckArgument_simple_failure() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckArgument_simple_failure(); } public void testCheckArgument_simple_success() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckArgument_simple_success(); } public void testCheckElementIndex_badSize() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckElementIndex_badSize(); } public void testCheckElementIndex_negative() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckElementIndex_negative(); } public void testCheckElementIndex_ok() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckElementIndex_ok(); } public void testCheckElementIndex_tooHigh() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckElementIndex_tooHigh(); } public void testCheckElementIndex_withDesc_negative() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckElementIndex_withDesc_negative(); } public void testCheckElementIndex_withDesc_tooHigh() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckElementIndex_withDesc_tooHigh(); } public void testCheckNotNull_complexMessage_failure() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckNotNull_complexMessage_failure(); } public void testCheckNotNull_complexMessage_success() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckNotNull_complexMessage_success(); } public void testCheckNotNull_simpleMessage_failure() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckNotNull_simpleMessage_failure(); } public void testCheckNotNull_simpleMessage_success() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckNotNull_simpleMessage_success(); } public void testCheckNotNull_simple_failure() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckNotNull_simple_failure(); } public void testCheckNotNull_simple_success() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckNotNull_simple_success(); } public void testCheckPositionIndex_badSize() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckPositionIndex_badSize(); } public void testCheckPositionIndex_negative() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckPositionIndex_negative(); } public void testCheckPositionIndex_ok() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckPositionIndex_ok(); } public void testCheckPositionIndex_startNegative() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckPositionIndex_startNegative(); } public void testCheckPositionIndex_tooHigh() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckPositionIndex_tooHigh(); } public void testCheckPositionIndex_withDesc_negative() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckPositionIndex_withDesc_negative(); } public void testCheckPositionIndex_withDesc_tooHigh() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckPositionIndex_withDesc_tooHigh(); } public void testCheckPositionIndexes_badSize() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckPositionIndexes_badSize(); } public void testCheckPositionIndexes_endTooHigh() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckPositionIndexes_endTooHigh(); } public void testCheckPositionIndexes_ok() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckPositionIndexes_ok(); } public void testCheckPositionIndexes_reversed() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckPositionIndexes_reversed(); } public void testCheckState_complexMessage_failure() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckState_complexMessage_failure(); } public void testCheckState_complexMessage_success() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckState_complexMessage_success(); } public void testCheckState_nullMessage_failure() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckState_nullMessage_failure(); } public void testCheckState_simpleMessage_failure() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckState_simpleMessage_failure(); } public void testCheckState_simpleMessage_success() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckState_simpleMessage_success(); } public void testCheckState_simple_failure() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckState_simple_failure(); } public void testCheckState_simple_success() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testCheckState_simple_success(); } public void testFormat() throws Exception { com.google.common.base.PreconditionsTest testCase = new com.google.common.base.PreconditionsTest(); testCase.testFormat(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.base; public class StopwatchTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.base.testModule"; } public void testCreateStarted() throws Exception { com.google.common.base.StopwatchTest testCase = new com.google.common.base.StopwatchTest(); testCase.testCreateStarted(); } public void testCreateUnstarted() throws Exception { com.google.common.base.StopwatchTest testCase = new com.google.common.base.StopwatchTest(); testCase.testCreateUnstarted(); } public void testElapsedMillis() throws Exception { com.google.common.base.StopwatchTest testCase = new com.google.common.base.StopwatchTest(); testCase.testElapsedMillis(); } public void testElapsedMillis_multipleSegments() throws Exception { com.google.common.base.StopwatchTest testCase = new com.google.common.base.StopwatchTest(); testCase.testElapsedMillis_multipleSegments(); } public void testElapsedMillis_notRunning() throws Exception { com.google.common.base.StopwatchTest testCase = new com.google.common.base.StopwatchTest(); testCase.testElapsedMillis_notRunning(); } public void testElapsedMillis_whileRunning() throws Exception { com.google.common.base.StopwatchTest testCase = new com.google.common.base.StopwatchTest(); testCase.testElapsedMillis_whileRunning(); } public void testElapsed_micros() throws Exception { com.google.common.base.StopwatchTest testCase = new com.google.common.base.StopwatchTest(); testCase.testElapsed_micros(); } public void testElapsed_millis() throws Exception { com.google.common.base.StopwatchTest testCase = new com.google.common.base.StopwatchTest(); testCase.testElapsed_millis(); } public void testElapsed_multipleSegments() throws Exception { com.google.common.base.StopwatchTest testCase = new com.google.common.base.StopwatchTest(); testCase.testElapsed_multipleSegments(); } public void testElapsed_notRunning() throws Exception { com.google.common.base.StopwatchTest testCase = new com.google.common.base.StopwatchTest(); testCase.testElapsed_notRunning(); } public void testElapsed_whileRunning() throws Exception { com.google.common.base.StopwatchTest testCase = new com.google.common.base.StopwatchTest(); testCase.testElapsed_whileRunning(); } public void testInitialState() throws Exception { com.google.common.base.StopwatchTest testCase = new com.google.common.base.StopwatchTest(); testCase.testInitialState(); } public void testReset_new() throws Exception { com.google.common.base.StopwatchTest testCase = new com.google.common.base.StopwatchTest(); testCase.testReset_new(); } public void testReset_whileRunning() throws Exception { com.google.common.base.StopwatchTest testCase = new com.google.common.base.StopwatchTest(); testCase.testReset_whileRunning(); } public void testStart() throws Exception { com.google.common.base.StopwatchTest testCase = new com.google.common.base.StopwatchTest(); testCase.testStart(); } public void testStart_whileRunning() throws Exception { com.google.common.base.StopwatchTest testCase = new com.google.common.base.StopwatchTest(); testCase.testStart_whileRunning(); } public void testStop() throws Exception { com.google.common.base.StopwatchTest testCase = new com.google.common.base.StopwatchTest(); testCase.testStop(); } public void testStop_alreadyStopped() throws Exception { com.google.common.base.StopwatchTest testCase = new com.google.common.base.StopwatchTest(); testCase.testStop_alreadyStopped(); } public void testStop_new() throws Exception { com.google.common.base.StopwatchTest testCase = new com.google.common.base.StopwatchTest(); testCase.testStop_new(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.base; public class FunctionsTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.base.testModule"; } public void testComposeOfFunctionsIsAssociative() throws Exception { com.google.common.base.FunctionsTest testCase = new com.google.common.base.FunctionsTest(); testCase.testComposeOfFunctionsIsAssociative(); } public void testComposeOfPredicateAndFunctionIsAssociative() throws Exception { com.google.common.base.FunctionsTest testCase = new com.google.common.base.FunctionsTest(); testCase.testComposeOfPredicateAndFunctionIsAssociative(); } public void testComposition() throws Exception { com.google.common.base.FunctionsTest testCase = new com.google.common.base.FunctionsTest(); testCase.testComposition(); } public void testCompositionWildcard() throws Exception { com.google.common.base.FunctionsTest testCase = new com.google.common.base.FunctionsTest(); testCase.testCompositionWildcard(); } public void testConstant() throws Exception { com.google.common.base.FunctionsTest testCase = new com.google.common.base.FunctionsTest(); testCase.testConstant(); } public void testForMapWildCardWithDefault() throws Exception { com.google.common.base.FunctionsTest testCase = new com.google.common.base.FunctionsTest(); testCase.testForMapWildCardWithDefault(); } public void testForMapWithDefault() throws Exception { com.google.common.base.FunctionsTest testCase = new com.google.common.base.FunctionsTest(); testCase.testForMapWithDefault(); } public void testForMapWithDefault_null() throws Exception { com.google.common.base.FunctionsTest testCase = new com.google.common.base.FunctionsTest(); testCase.testForMapWithDefault_null(); } public void testForMapWithoutDefault() throws Exception { com.google.common.base.FunctionsTest testCase = new com.google.common.base.FunctionsTest(); testCase.testForMapWithoutDefault(); } public void testForPredicate() throws Exception { com.google.common.base.FunctionsTest testCase = new com.google.common.base.FunctionsTest(); testCase.testForPredicate(); } public void testForSupplier() throws Exception { com.google.common.base.FunctionsTest testCase = new com.google.common.base.FunctionsTest(); testCase.testForSupplier(); } public void testIdentity_notSame() throws Exception { com.google.common.base.FunctionsTest testCase = new com.google.common.base.FunctionsTest(); testCase.testIdentity_notSame(); } public void testIdentity_same() throws Exception { com.google.common.base.FunctionsTest testCase = new com.google.common.base.FunctionsTest(); testCase.testIdentity_same(); } public void testToStringFunction_apply() throws Exception { com.google.common.base.FunctionsTest testCase = new com.google.common.base.FunctionsTest(); testCase.testToStringFunction_apply(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.primitives; public class UnsignedIntsTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.primitives.testModule"; } public void testCompare() throws Exception { com.google.common.primitives.UnsignedIntsTest testCase = new com.google.common.primitives.UnsignedIntsTest(); testCase.testCompare(); } public void testDecodeInt() throws Exception { com.google.common.primitives.UnsignedIntsTest testCase = new com.google.common.primitives.UnsignedIntsTest(); testCase.testDecodeInt(); } public void testDecodeIntFails() throws Exception { com.google.common.primitives.UnsignedIntsTest testCase = new com.google.common.primitives.UnsignedIntsTest(); testCase.testDecodeIntFails(); } public void testDivide() throws Exception { com.google.common.primitives.UnsignedIntsTest testCase = new com.google.common.primitives.UnsignedIntsTest(); testCase.testDivide(); } public void testJoin() throws Exception { com.google.common.primitives.UnsignedIntsTest testCase = new com.google.common.primitives.UnsignedIntsTest(); testCase.testJoin(); } public void testLexicographicalComparator() throws Exception { com.google.common.primitives.UnsignedIntsTest testCase = new com.google.common.primitives.UnsignedIntsTest(); testCase.testLexicographicalComparator(); } public void testMax() throws Exception { com.google.common.primitives.UnsignedIntsTest testCase = new com.google.common.primitives.UnsignedIntsTest(); testCase.testMax(); } public void testMax_noArgs() throws Exception { com.google.common.primitives.UnsignedIntsTest testCase = new com.google.common.primitives.UnsignedIntsTest(); testCase.testMax_noArgs(); } public void testMin() throws Exception { com.google.common.primitives.UnsignedIntsTest testCase = new com.google.common.primitives.UnsignedIntsTest(); testCase.testMin(); } public void testMin_noArgs() throws Exception { com.google.common.primitives.UnsignedIntsTest testCase = new com.google.common.primitives.UnsignedIntsTest(); testCase.testMin_noArgs(); } public void testParseInt() throws Exception { com.google.common.primitives.UnsignedIntsTest testCase = new com.google.common.primitives.UnsignedIntsTest(); testCase.testParseInt(); } public void testParseIntThrowsExceptionForInvalidRadix() throws Exception { com.google.common.primitives.UnsignedIntsTest testCase = new com.google.common.primitives.UnsignedIntsTest(); testCase.testParseIntThrowsExceptionForInvalidRadix(); } public void testParseIntWithRadix() throws Exception { com.google.common.primitives.UnsignedIntsTest testCase = new com.google.common.primitives.UnsignedIntsTest(); testCase.testParseIntWithRadix(); } public void testRemainder() throws Exception { com.google.common.primitives.UnsignedIntsTest testCase = new com.google.common.primitives.UnsignedIntsTest(); testCase.testRemainder(); } public void testToLong() throws Exception { com.google.common.primitives.UnsignedIntsTest testCase = new com.google.common.primitives.UnsignedIntsTest(); testCase.testToLong(); } public void testToString() throws Exception { com.google.common.primitives.UnsignedIntsTest testCase = new com.google.common.primitives.UnsignedIntsTest(); testCase.testToString(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.primitives; public class SignedBytesTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.primitives.testModule"; } public void testCheckedCast() throws Exception { com.google.common.primitives.SignedBytesTest testCase = new com.google.common.primitives.SignedBytesTest(); testCase.testCheckedCast(); } public void testCompare() throws Exception { com.google.common.primitives.SignedBytesTest testCase = new com.google.common.primitives.SignedBytesTest(); testCase.testCompare(); } public void testJoin() throws Exception { com.google.common.primitives.SignedBytesTest testCase = new com.google.common.primitives.SignedBytesTest(); testCase.testJoin(); } public void testLexicographicalComparator() throws Exception { com.google.common.primitives.SignedBytesTest testCase = new com.google.common.primitives.SignedBytesTest(); testCase.testLexicographicalComparator(); } public void testMax() throws Exception { com.google.common.primitives.SignedBytesTest testCase = new com.google.common.primitives.SignedBytesTest(); testCase.testMax(); } public void testMax_noArgs() throws Exception { com.google.common.primitives.SignedBytesTest testCase = new com.google.common.primitives.SignedBytesTest(); testCase.testMax_noArgs(); } public void testMin() throws Exception { com.google.common.primitives.SignedBytesTest testCase = new com.google.common.primitives.SignedBytesTest(); testCase.testMin(); } public void testMin_noArgs() throws Exception { com.google.common.primitives.SignedBytesTest testCase = new com.google.common.primitives.SignedBytesTest(); testCase.testMin_noArgs(); } public void testSaturatedCast() throws Exception { com.google.common.primitives.SignedBytesTest testCase = new com.google.common.primitives.SignedBytesTest(); testCase.testSaturatedCast(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.primitives; public class FloatsTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.primitives.testModule"; } public void testAsListEmpty() throws Exception { com.google.common.primitives.FloatsTest testCase = new com.google.common.primitives.FloatsTest(); testCase.testAsListEmpty(); } public void testAsList_isAView() throws Exception { com.google.common.primitives.FloatsTest testCase = new com.google.common.primitives.FloatsTest(); testCase.testAsList_isAView(); } public void testAsList_subList_toArray_roundTrip() throws Exception { com.google.common.primitives.FloatsTest testCase = new com.google.common.primitives.FloatsTest(); testCase.testAsList_subList_toArray_roundTrip(); } public void testAsList_toArray_roundTrip() throws Exception { com.google.common.primitives.FloatsTest testCase = new com.google.common.primitives.FloatsTest(); testCase.testAsList_toArray_roundTrip(); } public void testCompare() throws Exception { com.google.common.primitives.FloatsTest testCase = new com.google.common.primitives.FloatsTest(); testCase.testCompare(); } public void testConcat() throws Exception { com.google.common.primitives.FloatsTest testCase = new com.google.common.primitives.FloatsTest(); testCase.testConcat(); } public void testContains() throws Exception { com.google.common.primitives.FloatsTest testCase = new com.google.common.primitives.FloatsTest(); testCase.testContains(); } public void testEnsureCapacity() throws Exception { com.google.common.primitives.FloatsTest testCase = new com.google.common.primitives.FloatsTest(); testCase.testEnsureCapacity(); } public void testEnsureCapacity_fail() throws Exception { com.google.common.primitives.FloatsTest testCase = new com.google.common.primitives.FloatsTest(); testCase.testEnsureCapacity_fail(); } public void testHashCode() throws Exception { com.google.common.primitives.FloatsTest testCase = new com.google.common.primitives.FloatsTest(); testCase.testHashCode(); } public void testIndexOf() throws Exception { com.google.common.primitives.FloatsTest testCase = new com.google.common.primitives.FloatsTest(); testCase.testIndexOf(); } public void testIndexOf_arrayTarget() throws Exception { com.google.common.primitives.FloatsTest testCase = new com.google.common.primitives.FloatsTest(); testCase.testIndexOf_arrayTarget(); } public void testIsFinite() throws Exception { com.google.common.primitives.FloatsTest testCase = new com.google.common.primitives.FloatsTest(); testCase.testIsFinite(); } public void testLastIndexOf() throws Exception { com.google.common.primitives.FloatsTest testCase = new com.google.common.primitives.FloatsTest(); testCase.testLastIndexOf(); } public void testLexicographicalComparator() throws Exception { com.google.common.primitives.FloatsTest testCase = new com.google.common.primitives.FloatsTest(); testCase.testLexicographicalComparator(); } public void testMax() throws Exception { com.google.common.primitives.FloatsTest testCase = new com.google.common.primitives.FloatsTest(); testCase.testMax(); } public void testMax_noArgs() throws Exception { com.google.common.primitives.FloatsTest testCase = new com.google.common.primitives.FloatsTest(); testCase.testMax_noArgs(); } public void testMin() throws Exception { com.google.common.primitives.FloatsTest testCase = new com.google.common.primitives.FloatsTest(); testCase.testMin(); } public void testMin_noArgs() throws Exception { com.google.common.primitives.FloatsTest testCase = new com.google.common.primitives.FloatsTest(); testCase.testMin_noArgs(); } public void testToArray() throws Exception { com.google.common.primitives.FloatsTest testCase = new com.google.common.primitives.FloatsTest(); testCase.testToArray(); } public void testToArray_threadSafe() throws Exception { com.google.common.primitives.FloatsTest testCase = new com.google.common.primitives.FloatsTest(); testCase.testToArray_threadSafe(); } public void testToArray_withConversion() throws Exception { com.google.common.primitives.FloatsTest testCase = new com.google.common.primitives.FloatsTest(); testCase.testToArray_withConversion(); } public void testToArray_withNull() throws Exception { com.google.common.primitives.FloatsTest testCase = new com.google.common.primitives.FloatsTest(); testCase.testToArray_withNull(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.primitives; public class IntsTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.primitives.testModule"; } public void testAsListEmpty() throws Exception { com.google.common.primitives.IntsTest testCase = new com.google.common.primitives.IntsTest(); testCase.testAsListEmpty(); } public void testAsList_isAView() throws Exception { com.google.common.primitives.IntsTest testCase = new com.google.common.primitives.IntsTest(); testCase.testAsList_isAView(); } public void testAsList_subList_toArray_roundTrip() throws Exception { com.google.common.primitives.IntsTest testCase = new com.google.common.primitives.IntsTest(); testCase.testAsList_subList_toArray_roundTrip(); } public void testAsList_toArray_roundTrip() throws Exception { com.google.common.primitives.IntsTest testCase = new com.google.common.primitives.IntsTest(); testCase.testAsList_toArray_roundTrip(); } public void testCheckedCast() throws Exception { com.google.common.primitives.IntsTest testCase = new com.google.common.primitives.IntsTest(); testCase.testCheckedCast(); } public void testCompare() throws Exception { com.google.common.primitives.IntsTest testCase = new com.google.common.primitives.IntsTest(); testCase.testCompare(); } public void testConcat() throws Exception { com.google.common.primitives.IntsTest testCase = new com.google.common.primitives.IntsTest(); testCase.testConcat(); } public void testContains() throws Exception { com.google.common.primitives.IntsTest testCase = new com.google.common.primitives.IntsTest(); testCase.testContains(); } public void testEnsureCapacity() throws Exception { com.google.common.primitives.IntsTest testCase = new com.google.common.primitives.IntsTest(); testCase.testEnsureCapacity(); } public void testEnsureCapacity_fail() throws Exception { com.google.common.primitives.IntsTest testCase = new com.google.common.primitives.IntsTest(); testCase.testEnsureCapacity_fail(); } public void testHashCode() throws Exception { com.google.common.primitives.IntsTest testCase = new com.google.common.primitives.IntsTest(); testCase.testHashCode(); } public void testIndexOf() throws Exception { com.google.common.primitives.IntsTest testCase = new com.google.common.primitives.IntsTest(); testCase.testIndexOf(); } public void testIndexOf_arrayTarget() throws Exception { com.google.common.primitives.IntsTest testCase = new com.google.common.primitives.IntsTest(); testCase.testIndexOf_arrayTarget(); } public void testJoin() throws Exception { com.google.common.primitives.IntsTest testCase = new com.google.common.primitives.IntsTest(); testCase.testJoin(); } public void testLastIndexOf() throws Exception { com.google.common.primitives.IntsTest testCase = new com.google.common.primitives.IntsTest(); testCase.testLastIndexOf(); } public void testLexicographicalComparator() throws Exception { com.google.common.primitives.IntsTest testCase = new com.google.common.primitives.IntsTest(); testCase.testLexicographicalComparator(); } public void testMax() throws Exception { com.google.common.primitives.IntsTest testCase = new com.google.common.primitives.IntsTest(); testCase.testMax(); } public void testMax_noArgs() throws Exception { com.google.common.primitives.IntsTest testCase = new com.google.common.primitives.IntsTest(); testCase.testMax_noArgs(); } public void testMin() throws Exception { com.google.common.primitives.IntsTest testCase = new com.google.common.primitives.IntsTest(); testCase.testMin(); } public void testMin_noArgs() throws Exception { com.google.common.primitives.IntsTest testCase = new com.google.common.primitives.IntsTest(); testCase.testMin_noArgs(); } public void testSaturatedCast() throws Exception { com.google.common.primitives.IntsTest testCase = new com.google.common.primitives.IntsTest(); testCase.testSaturatedCast(); } public void testToArray() throws Exception { com.google.common.primitives.IntsTest testCase = new com.google.common.primitives.IntsTest(); testCase.testToArray(); } public void testToArray_threadSafe() throws Exception { com.google.common.primitives.IntsTest testCase = new com.google.common.primitives.IntsTest(); testCase.testToArray_threadSafe(); } public void testToArray_withConversion() throws Exception { com.google.common.primitives.IntsTest testCase = new com.google.common.primitives.IntsTest(); testCase.testToArray_withConversion(); } public void testToArray_withNull() throws Exception { com.google.common.primitives.IntsTest testCase = new com.google.common.primitives.IntsTest(); testCase.testToArray_withNull(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.primitives; public class DoublesTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.primitives.testModule"; } public void testAsListEmpty() throws Exception { com.google.common.primitives.DoublesTest testCase = new com.google.common.primitives.DoublesTest(); testCase.testAsListEmpty(); } public void testAsList_isAView() throws Exception { com.google.common.primitives.DoublesTest testCase = new com.google.common.primitives.DoublesTest(); testCase.testAsList_isAView(); } public void testAsList_subList_toArray_roundTrip() throws Exception { com.google.common.primitives.DoublesTest testCase = new com.google.common.primitives.DoublesTest(); testCase.testAsList_subList_toArray_roundTrip(); } public void testAsList_toArray_roundTrip() throws Exception { com.google.common.primitives.DoublesTest testCase = new com.google.common.primitives.DoublesTest(); testCase.testAsList_toArray_roundTrip(); } public void testCompare() throws Exception { com.google.common.primitives.DoublesTest testCase = new com.google.common.primitives.DoublesTest(); testCase.testCompare(); } public void testConcat() throws Exception { com.google.common.primitives.DoublesTest testCase = new com.google.common.primitives.DoublesTest(); testCase.testConcat(); } public void testContains() throws Exception { com.google.common.primitives.DoublesTest testCase = new com.google.common.primitives.DoublesTest(); testCase.testContains(); } public void testEnsureCapacity() throws Exception { com.google.common.primitives.DoublesTest testCase = new com.google.common.primitives.DoublesTest(); testCase.testEnsureCapacity(); } public void testEnsureCapacity_fail() throws Exception { com.google.common.primitives.DoublesTest testCase = new com.google.common.primitives.DoublesTest(); testCase.testEnsureCapacity_fail(); } public void testHashCode() throws Exception { com.google.common.primitives.DoublesTest testCase = new com.google.common.primitives.DoublesTest(); testCase.testHashCode(); } public void testIndexOf() throws Exception { com.google.common.primitives.DoublesTest testCase = new com.google.common.primitives.DoublesTest(); testCase.testIndexOf(); } public void testIndexOf_arrayTarget() throws Exception { com.google.common.primitives.DoublesTest testCase = new com.google.common.primitives.DoublesTest(); testCase.testIndexOf_arrayTarget(); } public void testIsFinite() throws Exception { com.google.common.primitives.DoublesTest testCase = new com.google.common.primitives.DoublesTest(); testCase.testIsFinite(); } public void testJoinNonTrivialDoubles() throws Exception { com.google.common.primitives.DoublesTest testCase = new com.google.common.primitives.DoublesTest(); testCase.testJoinNonTrivialDoubles(); } public void testLastIndexOf() throws Exception { com.google.common.primitives.DoublesTest testCase = new com.google.common.primitives.DoublesTest(); testCase.testLastIndexOf(); } public void testLexicographicalComparator() throws Exception { com.google.common.primitives.DoublesTest testCase = new com.google.common.primitives.DoublesTest(); testCase.testLexicographicalComparator(); } public void testMax() throws Exception { com.google.common.primitives.DoublesTest testCase = new com.google.common.primitives.DoublesTest(); testCase.testMax(); } public void testMax_noArgs() throws Exception { com.google.common.primitives.DoublesTest testCase = new com.google.common.primitives.DoublesTest(); testCase.testMax_noArgs(); } public void testMin() throws Exception { com.google.common.primitives.DoublesTest testCase = new com.google.common.primitives.DoublesTest(); testCase.testMin(); } public void testMin_noArgs() throws Exception { com.google.common.primitives.DoublesTest testCase = new com.google.common.primitives.DoublesTest(); testCase.testMin_noArgs(); } public void testToArray() throws Exception { com.google.common.primitives.DoublesTest testCase = new com.google.common.primitives.DoublesTest(); testCase.testToArray(); } public void testToArray_threadSafe() throws Exception { com.google.common.primitives.DoublesTest testCase = new com.google.common.primitives.DoublesTest(); testCase.testToArray_threadSafe(); } public void testToArray_withConversion() throws Exception { com.google.common.primitives.DoublesTest testCase = new com.google.common.primitives.DoublesTest(); testCase.testToArray_withConversion(); } public void testToArray_withNull() throws Exception { com.google.common.primitives.DoublesTest testCase = new com.google.common.primitives.DoublesTest(); testCase.testToArray_withNull(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.primitives; public class UnsignedLongTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.primitives.testModule"; } public void testAsUnsignedAndLongValueAreInverses() throws Exception { com.google.common.primitives.UnsignedLongTest testCase = new com.google.common.primitives.UnsignedLongTest(); testCase.testAsUnsignedAndLongValueAreInverses(); } public void testAsUnsignedBigIntegerValue() throws Exception { com.google.common.primitives.UnsignedLongTest testCase = new com.google.common.primitives.UnsignedLongTest(); testCase.testAsUnsignedBigIntegerValue(); } public void testCompare() throws Exception { com.google.common.primitives.UnsignedLongTest testCase = new com.google.common.primitives.UnsignedLongTest(); testCase.testCompare(); } public void testDivideByZeroThrows() throws Exception { com.google.common.primitives.UnsignedLongTest testCase = new com.google.common.primitives.UnsignedLongTest(); testCase.testDivideByZeroThrows(); } public void testDividedBy() throws Exception { com.google.common.primitives.UnsignedLongTest testCase = new com.google.common.primitives.UnsignedLongTest(); testCase.testDividedBy(); } public void testDoubleValue() throws Exception { com.google.common.primitives.UnsignedLongTest testCase = new com.google.common.primitives.UnsignedLongTest(); testCase.testDoubleValue(); } public void testFloatValue() throws Exception { com.google.common.primitives.UnsignedLongTest testCase = new com.google.common.primitives.UnsignedLongTest(); testCase.testFloatValue(); } public void testIntValue() throws Exception { com.google.common.primitives.UnsignedLongTest testCase = new com.google.common.primitives.UnsignedLongTest(); testCase.testIntValue(); } public void testMinus() throws Exception { com.google.common.primitives.UnsignedLongTest testCase = new com.google.common.primitives.UnsignedLongTest(); testCase.testMinus(); } public void testMod() throws Exception { com.google.common.primitives.UnsignedLongTest testCase = new com.google.common.primitives.UnsignedLongTest(); testCase.testMod(); } public void testModByZero() throws Exception { com.google.common.primitives.UnsignedLongTest testCase = new com.google.common.primitives.UnsignedLongTest(); testCase.testModByZero(); } public void testPlus() throws Exception { com.google.common.primitives.UnsignedLongTest testCase = new com.google.common.primitives.UnsignedLongTest(); testCase.testPlus(); } public void testTimes() throws Exception { com.google.common.primitives.UnsignedLongTest testCase = new com.google.common.primitives.UnsignedLongTest(); testCase.testTimes(); } public void testToString() throws Exception { com.google.common.primitives.UnsignedLongTest testCase = new com.google.common.primitives.UnsignedLongTest(); testCase.testToString(); } public void testToStringRadixQuick() throws Exception { com.google.common.primitives.UnsignedLongTest testCase = new com.google.common.primitives.UnsignedLongTest(); testCase.testToStringRadixQuick(); } public void testValueOfBigInteger() throws Exception { com.google.common.primitives.UnsignedLongTest testCase = new com.google.common.primitives.UnsignedLongTest(); testCase.testValueOfBigInteger(); } public void testValueOfLong() throws Exception { com.google.common.primitives.UnsignedLongTest testCase = new com.google.common.primitives.UnsignedLongTest(); testCase.testValueOfLong(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.primitives; public class BytesTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.primitives.testModule"; } public void testAsListEmpty() throws Exception { com.google.common.primitives.BytesTest testCase = new com.google.common.primitives.BytesTest(); testCase.testAsListEmpty(); } public void testAsList_isAView() throws Exception { com.google.common.primitives.BytesTest testCase = new com.google.common.primitives.BytesTest(); testCase.testAsList_isAView(); } public void testAsList_subList_toArray_roundTrip() throws Exception { com.google.common.primitives.BytesTest testCase = new com.google.common.primitives.BytesTest(); testCase.testAsList_subList_toArray_roundTrip(); } public void testAsList_toArray_roundTrip() throws Exception { com.google.common.primitives.BytesTest testCase = new com.google.common.primitives.BytesTest(); testCase.testAsList_toArray_roundTrip(); } public void testConcat() throws Exception { com.google.common.primitives.BytesTest testCase = new com.google.common.primitives.BytesTest(); testCase.testConcat(); } public void testContains() throws Exception { com.google.common.primitives.BytesTest testCase = new com.google.common.primitives.BytesTest(); testCase.testContains(); } public void testEnsureCapacity() throws Exception { com.google.common.primitives.BytesTest testCase = new com.google.common.primitives.BytesTest(); testCase.testEnsureCapacity(); } public void testEnsureCapacity_fail() throws Exception { com.google.common.primitives.BytesTest testCase = new com.google.common.primitives.BytesTest(); testCase.testEnsureCapacity_fail(); } public void testHashCode() throws Exception { com.google.common.primitives.BytesTest testCase = new com.google.common.primitives.BytesTest(); testCase.testHashCode(); } public void testIndexOf() throws Exception { com.google.common.primitives.BytesTest testCase = new com.google.common.primitives.BytesTest(); testCase.testIndexOf(); } public void testIndexOf_arrayTarget() throws Exception { com.google.common.primitives.BytesTest testCase = new com.google.common.primitives.BytesTest(); testCase.testIndexOf_arrayTarget(); } public void testLastIndexOf() throws Exception { com.google.common.primitives.BytesTest testCase = new com.google.common.primitives.BytesTest(); testCase.testLastIndexOf(); } public void testToArray() throws Exception { com.google.common.primitives.BytesTest testCase = new com.google.common.primitives.BytesTest(); testCase.testToArray(); } public void testToArray_threadSafe() throws Exception { com.google.common.primitives.BytesTest testCase = new com.google.common.primitives.BytesTest(); testCase.testToArray_threadSafe(); } public void testToArray_withConversion() throws Exception { com.google.common.primitives.BytesTest testCase = new com.google.common.primitives.BytesTest(); testCase.testToArray_withConversion(); } public void testToArray_withNull() throws Exception { com.google.common.primitives.BytesTest testCase = new com.google.common.primitives.BytesTest(); testCase.testToArray_withNull(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.primitives; public class UnsignedLongsTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.primitives.testModule"; } public void testCompare() throws Exception { com.google.common.primitives.UnsignedLongsTest testCase = new com.google.common.primitives.UnsignedLongsTest(); testCase.testCompare(); } public void testDecodeLong() throws Exception { com.google.common.primitives.UnsignedLongsTest testCase = new com.google.common.primitives.UnsignedLongsTest(); testCase.testDecodeLong(); } public void testDecodeLongFails() throws Exception { com.google.common.primitives.UnsignedLongsTest testCase = new com.google.common.primitives.UnsignedLongsTest(); testCase.testDecodeLongFails(); } public void testDivide() throws Exception { com.google.common.primitives.UnsignedLongsTest testCase = new com.google.common.primitives.UnsignedLongsTest(); testCase.testDivide(); } public void testJoin() throws Exception { com.google.common.primitives.UnsignedLongsTest testCase = new com.google.common.primitives.UnsignedLongsTest(); testCase.testJoin(); } public void testLexicographicalComparator() throws Exception { com.google.common.primitives.UnsignedLongsTest testCase = new com.google.common.primitives.UnsignedLongsTest(); testCase.testLexicographicalComparator(); } public void testMax() throws Exception { com.google.common.primitives.UnsignedLongsTest testCase = new com.google.common.primitives.UnsignedLongsTest(); testCase.testMax(); } public void testMax_noArgs() throws Exception { com.google.common.primitives.UnsignedLongsTest testCase = new com.google.common.primitives.UnsignedLongsTest(); testCase.testMax_noArgs(); } public void testMin() throws Exception { com.google.common.primitives.UnsignedLongsTest testCase = new com.google.common.primitives.UnsignedLongsTest(); testCase.testMin(); } public void testMin_noArgs() throws Exception { com.google.common.primitives.UnsignedLongsTest testCase = new com.google.common.primitives.UnsignedLongsTest(); testCase.testMin_noArgs(); } public void testParseLong() throws Exception { com.google.common.primitives.UnsignedLongsTest testCase = new com.google.common.primitives.UnsignedLongsTest(); testCase.testParseLong(); } public void testParseLongThrowsExceptionForInvalidRadix() throws Exception { com.google.common.primitives.UnsignedLongsTest testCase = new com.google.common.primitives.UnsignedLongsTest(); testCase.testParseLongThrowsExceptionForInvalidRadix(); } public void testParseLongWithRadix() throws Exception { com.google.common.primitives.UnsignedLongsTest testCase = new com.google.common.primitives.UnsignedLongsTest(); testCase.testParseLongWithRadix(); } public void testRemainder() throws Exception { com.google.common.primitives.UnsignedLongsTest testCase = new com.google.common.primitives.UnsignedLongsTest(); testCase.testRemainder(); } public void testToString() throws Exception { com.google.common.primitives.UnsignedLongsTest testCase = new com.google.common.primitives.UnsignedLongsTest(); testCase.testToString(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.primitives; public class CharsTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.primitives.testModule"; } public void testAsListEmpty() throws Exception { com.google.common.primitives.CharsTest testCase = new com.google.common.primitives.CharsTest(); testCase.testAsListEmpty(); } public void testAsList_isAView() throws Exception { com.google.common.primitives.CharsTest testCase = new com.google.common.primitives.CharsTest(); testCase.testAsList_isAView(); } public void testAsList_subList_toArray_roundTrip() throws Exception { com.google.common.primitives.CharsTest testCase = new com.google.common.primitives.CharsTest(); testCase.testAsList_subList_toArray_roundTrip(); } public void testAsList_toArray_roundTrip() throws Exception { com.google.common.primitives.CharsTest testCase = new com.google.common.primitives.CharsTest(); testCase.testAsList_toArray_roundTrip(); } public void testCheckedCast() throws Exception { com.google.common.primitives.CharsTest testCase = new com.google.common.primitives.CharsTest(); testCase.testCheckedCast(); } public void testCompare() throws Exception { com.google.common.primitives.CharsTest testCase = new com.google.common.primitives.CharsTest(); testCase.testCompare(); } public void testConcat() throws Exception { com.google.common.primitives.CharsTest testCase = new com.google.common.primitives.CharsTest(); testCase.testConcat(); } public void testContains() throws Exception { com.google.common.primitives.CharsTest testCase = new com.google.common.primitives.CharsTest(); testCase.testContains(); } public void testEnsureCapacity() throws Exception { com.google.common.primitives.CharsTest testCase = new com.google.common.primitives.CharsTest(); testCase.testEnsureCapacity(); } public void testEnsureCapacity_fail() throws Exception { com.google.common.primitives.CharsTest testCase = new com.google.common.primitives.CharsTest(); testCase.testEnsureCapacity_fail(); } public void testHashCode() throws Exception { com.google.common.primitives.CharsTest testCase = new com.google.common.primitives.CharsTest(); testCase.testHashCode(); } public void testIndexOf() throws Exception { com.google.common.primitives.CharsTest testCase = new com.google.common.primitives.CharsTest(); testCase.testIndexOf(); } public void testIndexOf_arrayTarget() throws Exception { com.google.common.primitives.CharsTest testCase = new com.google.common.primitives.CharsTest(); testCase.testIndexOf_arrayTarget(); } public void testJoin() throws Exception { com.google.common.primitives.CharsTest testCase = new com.google.common.primitives.CharsTest(); testCase.testJoin(); } public void testLastIndexOf() throws Exception { com.google.common.primitives.CharsTest testCase = new com.google.common.primitives.CharsTest(); testCase.testLastIndexOf(); } public void testLexicographicalComparator() throws Exception { com.google.common.primitives.CharsTest testCase = new com.google.common.primitives.CharsTest(); testCase.testLexicographicalComparator(); } public void testMax() throws Exception { com.google.common.primitives.CharsTest testCase = new com.google.common.primitives.CharsTest(); testCase.testMax(); } public void testMax_noArgs() throws Exception { com.google.common.primitives.CharsTest testCase = new com.google.common.primitives.CharsTest(); testCase.testMax_noArgs(); } public void testMin() throws Exception { com.google.common.primitives.CharsTest testCase = new com.google.common.primitives.CharsTest(); testCase.testMin(); } public void testMin_noArgs() throws Exception { com.google.common.primitives.CharsTest testCase = new com.google.common.primitives.CharsTest(); testCase.testMin_noArgs(); } public void testSaturatedCast() throws Exception { com.google.common.primitives.CharsTest testCase = new com.google.common.primitives.CharsTest(); testCase.testSaturatedCast(); } public void testToArray() throws Exception { com.google.common.primitives.CharsTest testCase = new com.google.common.primitives.CharsTest(); testCase.testToArray(); } public void testToArray_threadSafe() throws Exception { com.google.common.primitives.CharsTest testCase = new com.google.common.primitives.CharsTest(); testCase.testToArray_threadSafe(); } public void testToArray_withNull() throws Exception { com.google.common.primitives.CharsTest testCase = new com.google.common.primitives.CharsTest(); testCase.testToArray_withNull(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.primitives; public class ShortsTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.primitives.testModule"; } public void testAsListEmpty() throws Exception { com.google.common.primitives.ShortsTest testCase = new com.google.common.primitives.ShortsTest(); testCase.testAsListEmpty(); } public void testAsList_isAView() throws Exception { com.google.common.primitives.ShortsTest testCase = new com.google.common.primitives.ShortsTest(); testCase.testAsList_isAView(); } public void testAsList_subList_toArray_roundTrip() throws Exception { com.google.common.primitives.ShortsTest testCase = new com.google.common.primitives.ShortsTest(); testCase.testAsList_subList_toArray_roundTrip(); } public void testAsList_toArray_roundTrip() throws Exception { com.google.common.primitives.ShortsTest testCase = new com.google.common.primitives.ShortsTest(); testCase.testAsList_toArray_roundTrip(); } public void testCheckedCast() throws Exception { com.google.common.primitives.ShortsTest testCase = new com.google.common.primitives.ShortsTest(); testCase.testCheckedCast(); } public void testCompare() throws Exception { com.google.common.primitives.ShortsTest testCase = new com.google.common.primitives.ShortsTest(); testCase.testCompare(); } public void testConcat() throws Exception { com.google.common.primitives.ShortsTest testCase = new com.google.common.primitives.ShortsTest(); testCase.testConcat(); } public void testContains() throws Exception { com.google.common.primitives.ShortsTest testCase = new com.google.common.primitives.ShortsTest(); testCase.testContains(); } public void testEnsureCapacity() throws Exception { com.google.common.primitives.ShortsTest testCase = new com.google.common.primitives.ShortsTest(); testCase.testEnsureCapacity(); } public void testEnsureCapacity_fail() throws Exception { com.google.common.primitives.ShortsTest testCase = new com.google.common.primitives.ShortsTest(); testCase.testEnsureCapacity_fail(); } public void testHashCode() throws Exception { com.google.common.primitives.ShortsTest testCase = new com.google.common.primitives.ShortsTest(); testCase.testHashCode(); } public void testIndexOf() throws Exception { com.google.common.primitives.ShortsTest testCase = new com.google.common.primitives.ShortsTest(); testCase.testIndexOf(); } public void testIndexOf_arrayTarget() throws Exception { com.google.common.primitives.ShortsTest testCase = new com.google.common.primitives.ShortsTest(); testCase.testIndexOf_arrayTarget(); } public void testJoin() throws Exception { com.google.common.primitives.ShortsTest testCase = new com.google.common.primitives.ShortsTest(); testCase.testJoin(); } public void testLastIndexOf() throws Exception { com.google.common.primitives.ShortsTest testCase = new com.google.common.primitives.ShortsTest(); testCase.testLastIndexOf(); } public void testLexicographicalComparator() throws Exception { com.google.common.primitives.ShortsTest testCase = new com.google.common.primitives.ShortsTest(); testCase.testLexicographicalComparator(); } public void testMax() throws Exception { com.google.common.primitives.ShortsTest testCase = new com.google.common.primitives.ShortsTest(); testCase.testMax(); } public void testMax_noArgs() throws Exception { com.google.common.primitives.ShortsTest testCase = new com.google.common.primitives.ShortsTest(); testCase.testMax_noArgs(); } public void testMin() throws Exception { com.google.common.primitives.ShortsTest testCase = new com.google.common.primitives.ShortsTest(); testCase.testMin(); } public void testMin_noArgs() throws Exception { com.google.common.primitives.ShortsTest testCase = new com.google.common.primitives.ShortsTest(); testCase.testMin_noArgs(); } public void testSaturatedCast() throws Exception { com.google.common.primitives.ShortsTest testCase = new com.google.common.primitives.ShortsTest(); testCase.testSaturatedCast(); } public void testToArray() throws Exception { com.google.common.primitives.ShortsTest testCase = new com.google.common.primitives.ShortsTest(); testCase.testToArray(); } public void testToArray_threadSafe() throws Exception { com.google.common.primitives.ShortsTest testCase = new com.google.common.primitives.ShortsTest(); testCase.testToArray_threadSafe(); } public void testToArray_withConversion() throws Exception { com.google.common.primitives.ShortsTest testCase = new com.google.common.primitives.ShortsTest(); testCase.testToArray_withConversion(); } public void testToArray_withNull() throws Exception { com.google.common.primitives.ShortsTest testCase = new com.google.common.primitives.ShortsTest(); testCase.testToArray_withNull(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.primitives; public class BooleansTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.primitives.testModule"; } public void testAsListContains() throws Exception { com.google.common.primitives.BooleansTest testCase = new com.google.common.primitives.BooleansTest(); testCase.testAsListContains(); } public void testAsListEquals() throws Exception { com.google.common.primitives.BooleansTest testCase = new com.google.common.primitives.BooleansTest(); testCase.testAsListEquals(); } public void testAsListHashcode() throws Exception { com.google.common.primitives.BooleansTest testCase = new com.google.common.primitives.BooleansTest(); testCase.testAsListHashcode(); } public void testAsListIndexOf() throws Exception { com.google.common.primitives.BooleansTest testCase = new com.google.common.primitives.BooleansTest(); testCase.testAsListIndexOf(); } public void testAsListIsEmpty() throws Exception { com.google.common.primitives.BooleansTest testCase = new com.google.common.primitives.BooleansTest(); testCase.testAsListIsEmpty(); } public void testAsListLastIndexOf() throws Exception { com.google.common.primitives.BooleansTest testCase = new com.google.common.primitives.BooleansTest(); testCase.testAsListLastIndexOf(); } public void testAsListSet() throws Exception { com.google.common.primitives.BooleansTest testCase = new com.google.common.primitives.BooleansTest(); testCase.testAsListSet(); } public void testAsListSize() throws Exception { com.google.common.primitives.BooleansTest testCase = new com.google.common.primitives.BooleansTest(); testCase.testAsListSize(); } public void testAsListToString() throws Exception { com.google.common.primitives.BooleansTest testCase = new com.google.common.primitives.BooleansTest(); testCase.testAsListToString(); } public void testCompare() throws Exception { com.google.common.primitives.BooleansTest testCase = new com.google.common.primitives.BooleansTest(); testCase.testCompare(); } public void testConcat() throws Exception { com.google.common.primitives.BooleansTest testCase = new com.google.common.primitives.BooleansTest(); testCase.testConcat(); } public void testContains() throws Exception { com.google.common.primitives.BooleansTest testCase = new com.google.common.primitives.BooleansTest(); testCase.testContains(); } public void testEnsureCapacity() throws Exception { com.google.common.primitives.BooleansTest testCase = new com.google.common.primitives.BooleansTest(); testCase.testEnsureCapacity(); } public void testEnsureCapacity_fail() throws Exception { com.google.common.primitives.BooleansTest testCase = new com.google.common.primitives.BooleansTest(); testCase.testEnsureCapacity_fail(); } public void testHashCode() throws Exception { com.google.common.primitives.BooleansTest testCase = new com.google.common.primitives.BooleansTest(); testCase.testHashCode(); } public void testIndexOf() throws Exception { com.google.common.primitives.BooleansTest testCase = new com.google.common.primitives.BooleansTest(); testCase.testIndexOf(); } public void testIndexOf_arrays() throws Exception { com.google.common.primitives.BooleansTest testCase = new com.google.common.primitives.BooleansTest(); testCase.testIndexOf_arrays(); } public void testJoin() throws Exception { com.google.common.primitives.BooleansTest testCase = new com.google.common.primitives.BooleansTest(); testCase.testJoin(); } public void testLastIndexOf() throws Exception { com.google.common.primitives.BooleansTest testCase = new com.google.common.primitives.BooleansTest(); testCase.testLastIndexOf(); } public void testLexicographicalComparator() throws Exception { com.google.common.primitives.BooleansTest testCase = new com.google.common.primitives.BooleansTest(); testCase.testLexicographicalComparator(); } public void testToArray() throws Exception { com.google.common.primitives.BooleansTest testCase = new com.google.common.primitives.BooleansTest(); testCase.testToArray(); } public void testToArray_threadSafe() throws Exception { com.google.common.primitives.BooleansTest testCase = new com.google.common.primitives.BooleansTest(); testCase.testToArray_threadSafe(); } public void testToArray_withNull() throws Exception { com.google.common.primitives.BooleansTest testCase = new com.google.common.primitives.BooleansTest(); testCase.testToArray_withNull(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.primitives; public class LongsTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.primitives.testModule"; } public void testAsListEmpty() throws Exception { com.google.common.primitives.LongsTest testCase = new com.google.common.primitives.LongsTest(); testCase.testAsListEmpty(); } public void testAsList_isAView() throws Exception { com.google.common.primitives.LongsTest testCase = new com.google.common.primitives.LongsTest(); testCase.testAsList_isAView(); } public void testAsList_subList_toArray_roundTrip() throws Exception { com.google.common.primitives.LongsTest testCase = new com.google.common.primitives.LongsTest(); testCase.testAsList_subList_toArray_roundTrip(); } public void testAsList_toArray_roundTrip() throws Exception { com.google.common.primitives.LongsTest testCase = new com.google.common.primitives.LongsTest(); testCase.testAsList_toArray_roundTrip(); } public void testByteArrayRoundTrips() throws Exception { com.google.common.primitives.LongsTest testCase = new com.google.common.primitives.LongsTest(); testCase.testByteArrayRoundTrips(); } public void testCompare() throws Exception { com.google.common.primitives.LongsTest testCase = new com.google.common.primitives.LongsTest(); testCase.testCompare(); } public void testConcat() throws Exception { com.google.common.primitives.LongsTest testCase = new com.google.common.primitives.LongsTest(); testCase.testConcat(); } public void testContains() throws Exception { com.google.common.primitives.LongsTest testCase = new com.google.common.primitives.LongsTest(); testCase.testContains(); } public void testEnsureCapacity() throws Exception { com.google.common.primitives.LongsTest testCase = new com.google.common.primitives.LongsTest(); testCase.testEnsureCapacity(); } public void testEnsureCapacity_fail() throws Exception { com.google.common.primitives.LongsTest testCase = new com.google.common.primitives.LongsTest(); testCase.testEnsureCapacity_fail(); } public void testFromByteArray() throws Exception { com.google.common.primitives.LongsTest testCase = new com.google.common.primitives.LongsTest(); testCase.testFromByteArray(); } public void testFromBytes() throws Exception { com.google.common.primitives.LongsTest testCase = new com.google.common.primitives.LongsTest(); testCase.testFromBytes(); } public void testIndexOf() throws Exception { com.google.common.primitives.LongsTest testCase = new com.google.common.primitives.LongsTest(); testCase.testIndexOf(); } public void testIndexOf_arrayTarget() throws Exception { com.google.common.primitives.LongsTest testCase = new com.google.common.primitives.LongsTest(); testCase.testIndexOf_arrayTarget(); } public void testJoin() throws Exception { com.google.common.primitives.LongsTest testCase = new com.google.common.primitives.LongsTest(); testCase.testJoin(); } public void testLastIndexOf() throws Exception { com.google.common.primitives.LongsTest testCase = new com.google.common.primitives.LongsTest(); testCase.testLastIndexOf(); } public void testLexicographicalComparator() throws Exception { com.google.common.primitives.LongsTest testCase = new com.google.common.primitives.LongsTest(); testCase.testLexicographicalComparator(); } public void testMax() throws Exception { com.google.common.primitives.LongsTest testCase = new com.google.common.primitives.LongsTest(); testCase.testMax(); } public void testMax_noArgs() throws Exception { com.google.common.primitives.LongsTest testCase = new com.google.common.primitives.LongsTest(); testCase.testMax_noArgs(); } public void testMin() throws Exception { com.google.common.primitives.LongsTest testCase = new com.google.common.primitives.LongsTest(); testCase.testMin(); } public void testMin_noArgs() throws Exception { com.google.common.primitives.LongsTest testCase = new com.google.common.primitives.LongsTest(); testCase.testMin_noArgs(); } public void testToArray() throws Exception { com.google.common.primitives.LongsTest testCase = new com.google.common.primitives.LongsTest(); testCase.testToArray(); } public void testToArray_threadSafe() throws Exception { com.google.common.primitives.LongsTest testCase = new com.google.common.primitives.LongsTest(); testCase.testToArray_threadSafe(); } public void testToArray_withConversion() throws Exception { com.google.common.primitives.LongsTest testCase = new com.google.common.primitives.LongsTest(); testCase.testToArray_withConversion(); } public void testToArray_withNull() throws Exception { com.google.common.primitives.LongsTest testCase = new com.google.common.primitives.LongsTest(); testCase.testToArray_withNull(); } public void testToByteArray() throws Exception { com.google.common.primitives.LongsTest testCase = new com.google.common.primitives.LongsTest(); testCase.testToByteArray(); } }
Java
/* * Copyright (C) 2010 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common; import com.google.gwt.core.client.EntryPoint; /** * A dummy entry point for our tests. * * @author Chris Povirk */ public class GuavaTestsEntryPoint implements EntryPoint { @Override public void onModuleLoad() { } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.html; public class HtmlEscapersTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.html.testModule"; } public void testHtmlEscaper() throws Exception { com.google.common.html.HtmlEscapersTest testCase = new com.google.common.html.HtmlEscapersTest(); testCase.testHtmlEscaper(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.math; public class BigIntegerMathTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.math.testModule"; } public void testBinomialOutside() throws Exception { com.google.common.math.BigIntegerMathTest testCase = new com.google.common.math.BigIntegerMathTest(); testCase.testBinomialOutside(); } public void testBinomialSmall() throws Exception { com.google.common.math.BigIntegerMathTest testCase = new com.google.common.math.BigIntegerMathTest(); testCase.testBinomialSmall(); } public void testFactorial() throws Exception { com.google.common.math.BigIntegerMathTest testCase = new com.google.common.math.BigIntegerMathTest(); testCase.testFactorial(); } public void testFactorial0() throws Exception { com.google.common.math.BigIntegerMathTest testCase = new com.google.common.math.BigIntegerMathTest(); testCase.testFactorial0(); } public void testFactorialNegative() throws Exception { com.google.common.math.BigIntegerMathTest testCase = new com.google.common.math.BigIntegerMathTest(); testCase.testFactorialNegative(); } public void testIsPowerOfTwo() throws Exception { com.google.common.math.BigIntegerMathTest testCase = new com.google.common.math.BigIntegerMathTest(); testCase.testIsPowerOfTwo(); } public void testLog2Ceiling() throws Exception { com.google.common.math.BigIntegerMathTest testCase = new com.google.common.math.BigIntegerMathTest(); testCase.testLog2Ceiling(); } public void testLog2Exact() throws Exception { com.google.common.math.BigIntegerMathTest testCase = new com.google.common.math.BigIntegerMathTest(); testCase.testLog2Exact(); } public void testLog2Floor() throws Exception { com.google.common.math.BigIntegerMathTest testCase = new com.google.common.math.BigIntegerMathTest(); testCase.testLog2Floor(); } public void testLog2HalfDown() throws Exception { com.google.common.math.BigIntegerMathTest testCase = new com.google.common.math.BigIntegerMathTest(); testCase.testLog2HalfDown(); } public void testLog2HalfEven() throws Exception { com.google.common.math.BigIntegerMathTest testCase = new com.google.common.math.BigIntegerMathTest(); testCase.testLog2HalfEven(); } public void testLog2HalfUp() throws Exception { com.google.common.math.BigIntegerMathTest testCase = new com.google.common.math.BigIntegerMathTest(); testCase.testLog2HalfUp(); } public void testLog2NegativeAlwaysThrows() throws Exception { com.google.common.math.BigIntegerMathTest testCase = new com.google.common.math.BigIntegerMathTest(); testCase.testLog2NegativeAlwaysThrows(); } public void testLog2ZeroAlwaysThrows() throws Exception { com.google.common.math.BigIntegerMathTest testCase = new com.google.common.math.BigIntegerMathTest(); testCase.testLog2ZeroAlwaysThrows(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.math; public class IntMathTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.math.testModule"; } public void testCheckedAdd() throws Exception { com.google.common.math.IntMathTest testCase = new com.google.common.math.IntMathTest(); testCase.testCheckedAdd(); } public void testCheckedMultiply() throws Exception { com.google.common.math.IntMathTest testCase = new com.google.common.math.IntMathTest(); testCase.testCheckedMultiply(); } public void testCheckedPow() throws Exception { com.google.common.math.IntMathTest testCase = new com.google.common.math.IntMathTest(); testCase.testCheckedPow(); } public void testCheckedSubtract() throws Exception { com.google.common.math.IntMathTest testCase = new com.google.common.math.IntMathTest(); testCase.testCheckedSubtract(); } public void testDivByZeroAlwaysFails() throws Exception { com.google.common.math.IntMathTest testCase = new com.google.common.math.IntMathTest(); testCase.testDivByZeroAlwaysFails(); } public void testDivNonZero() throws Exception { com.google.common.math.IntMathTest testCase = new com.google.common.math.IntMathTest(); testCase.testDivNonZero(); } public void testDivNonZeroExact() throws Exception { com.google.common.math.IntMathTest testCase = new com.google.common.math.IntMathTest(); testCase.testDivNonZeroExact(); } public void testFactorial() throws Exception { com.google.common.math.IntMathTest testCase = new com.google.common.math.IntMathTest(); testCase.testFactorial(); } public void testFactorialNegative() throws Exception { com.google.common.math.IntMathTest testCase = new com.google.common.math.IntMathTest(); testCase.testFactorialNegative(); } public void testGCD() throws Exception { com.google.common.math.IntMathTest testCase = new com.google.common.math.IntMathTest(); testCase.testGCD(); } public void testGCDNegativePositiveThrows() throws Exception { com.google.common.math.IntMathTest testCase = new com.google.common.math.IntMathTest(); testCase.testGCDNegativePositiveThrows(); } public void testGCDNegativeZeroThrows() throws Exception { com.google.common.math.IntMathTest testCase = new com.google.common.math.IntMathTest(); testCase.testGCDNegativeZeroThrows(); } public void testGCDZero() throws Exception { com.google.common.math.IntMathTest testCase = new com.google.common.math.IntMathTest(); testCase.testGCDZero(); } public void testLessThanBranchFree() throws Exception { com.google.common.math.IntMathTest testCase = new com.google.common.math.IntMathTest(); testCase.testLessThanBranchFree(); } public void testLog2Exact() throws Exception { com.google.common.math.IntMathTest testCase = new com.google.common.math.IntMathTest(); testCase.testLog2Exact(); } public void testLog2MatchesBigInteger() throws Exception { com.google.common.math.IntMathTest testCase = new com.google.common.math.IntMathTest(); testCase.testLog2MatchesBigInteger(); } public void testLog2NegativeAlwaysThrows() throws Exception { com.google.common.math.IntMathTest testCase = new com.google.common.math.IntMathTest(); testCase.testLog2NegativeAlwaysThrows(); } public void testLog2ZeroAlwaysThrows() throws Exception { com.google.common.math.IntMathTest testCase = new com.google.common.math.IntMathTest(); testCase.testLog2ZeroAlwaysThrows(); } public void testMod() throws Exception { com.google.common.math.IntMathTest testCase = new com.google.common.math.IntMathTest(); testCase.testMod(); } public void testModNegativeModulusFails() throws Exception { com.google.common.math.IntMathTest testCase = new com.google.common.math.IntMathTest(); testCase.testModNegativeModulusFails(); } public void testModZeroModulusFails() throws Exception { com.google.common.math.IntMathTest testCase = new com.google.common.math.IntMathTest(); testCase.testModZeroModulusFails(); } public void testZeroDivIsAlwaysZero() throws Exception { com.google.common.math.IntMathTest testCase = new com.google.common.math.IntMathTest(); testCase.testZeroDivIsAlwaysZero(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.math; public class LongMathTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.math.testModule"; } public void testBinomial() throws Exception { com.google.common.math.LongMathTest testCase = new com.google.common.math.LongMathTest(); testCase.testBinomial(); } public void testBinomialNegative() throws Exception { com.google.common.math.LongMathTest testCase = new com.google.common.math.LongMathTest(); testCase.testBinomialNegative(); } public void testBinomialOutside() throws Exception { com.google.common.math.LongMathTest testCase = new com.google.common.math.LongMathTest(); testCase.testBinomialOutside(); } public void testGCDExhaustive() throws Exception { com.google.common.math.LongMathTest testCase = new com.google.common.math.LongMathTest(); testCase.testGCDExhaustive(); } public void testLessThanBranchFree() throws Exception { com.google.common.math.LongMathTest testCase = new com.google.common.math.LongMathTest(); testCase.testLessThanBranchFree(); } public void testLog2Exact() throws Exception { com.google.common.math.LongMathTest testCase = new com.google.common.math.LongMathTest(); testCase.testLog2Exact(); } public void testLog2MatchesBigInteger() throws Exception { com.google.common.math.LongMathTest testCase = new com.google.common.math.LongMathTest(); testCase.testLog2MatchesBigInteger(); } public void testLog2NegativeAlwaysThrows() throws Exception { com.google.common.math.LongMathTest testCase = new com.google.common.math.LongMathTest(); testCase.testLog2NegativeAlwaysThrows(); } public void testLog2ZeroAlwaysThrows() throws Exception { com.google.common.math.LongMathTest testCase = new com.google.common.math.LongMathTest(); testCase.testLog2ZeroAlwaysThrows(); } public void testSqrtOfLongIsAtMostFloorSqrtMaxLong() throws Exception { com.google.common.math.LongMathTest testCase = new com.google.common.math.LongMathTest(); testCase.testSqrtOfLongIsAtMostFloorSqrtMaxLong(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.xml; public class XmlEscapersTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.xml.testModule"; } public void testXmlAttributeEscaper() throws Exception { com.google.common.xml.XmlEscapersTest testCase = new com.google.common.xml.XmlEscapersTest(); testCase.testXmlAttributeEscaper(); } public void testXmlContentEscaper() throws Exception { com.google.common.xml.XmlEscapersTest testCase = new com.google.common.xml.XmlEscapersTest(); testCase.testXmlContentEscaper(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.escape; public class EscapersTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.escape.testModule"; } public void testAsUnicodeEscaper() throws Exception { com.google.common.escape.EscapersTest testCase = new com.google.common.escape.EscapersTest(); testCase.testAsUnicodeEscaper(); } public void testBuilderCreatesIndependentEscapers() throws Exception { com.google.common.escape.EscapersTest testCase = new com.google.common.escape.EscapersTest(); testCase.testBuilderCreatesIndependentEscapers(); } public void testBuilderInitialStateNoReplacement() throws Exception { com.google.common.escape.EscapersTest testCase = new com.google.common.escape.EscapersTest(); testCase.testBuilderInitialStateNoReplacement(); } public void testBuilderInitialStateNoneUnsafe() throws Exception { com.google.common.escape.EscapersTest testCase = new com.google.common.escape.EscapersTest(); testCase.testBuilderInitialStateNoneUnsafe(); } public void testBuilderRetainsState() throws Exception { com.google.common.escape.EscapersTest testCase = new com.google.common.escape.EscapersTest(); testCase.testBuilderRetainsState(); } public void testNullEscaper() throws Exception { com.google.common.escape.EscapersTest testCase = new com.google.common.escape.EscapersTest(); testCase.testNullEscaper(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.escape; public class ArrayBasedUnicodeEscaperTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.escape.testModule"; } public void testCodePointsFromSurrogatePairs() throws Exception { com.google.common.escape.ArrayBasedUnicodeEscaperTest testCase = new com.google.common.escape.ArrayBasedUnicodeEscaperTest(); testCase.testCodePointsFromSurrogatePairs(); } public void testDeleteUnsafeChars() throws Exception { com.google.common.escape.ArrayBasedUnicodeEscaperTest testCase = new com.google.common.escape.ArrayBasedUnicodeEscaperTest(); testCase.testDeleteUnsafeChars(); } public void testReplacementPriority() throws Exception { com.google.common.escape.ArrayBasedUnicodeEscaperTest testCase = new com.google.common.escape.ArrayBasedUnicodeEscaperTest(); testCase.testReplacementPriority(); } public void testReplacements() throws Exception { com.google.common.escape.ArrayBasedUnicodeEscaperTest testCase = new com.google.common.escape.ArrayBasedUnicodeEscaperTest(); testCase.testReplacements(); } public void testSafeRange() throws Exception { com.google.common.escape.ArrayBasedUnicodeEscaperTest testCase = new com.google.common.escape.ArrayBasedUnicodeEscaperTest(); testCase.testSafeRange(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.escape; public class ArrayBasedCharEscaperTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.escape.testModule"; } public void testDeleteUnsafeChars() throws Exception { com.google.common.escape.ArrayBasedCharEscaperTest testCase = new com.google.common.escape.ArrayBasedCharEscaperTest(); testCase.testDeleteUnsafeChars(); } public void testReplacementPriority() throws Exception { com.google.common.escape.ArrayBasedCharEscaperTest testCase = new com.google.common.escape.ArrayBasedCharEscaperTest(); testCase.testReplacementPriority(); } public void testSafeRange() throws Exception { com.google.common.escape.ArrayBasedCharEscaperTest testCase = new com.google.common.escape.ArrayBasedCharEscaperTest(); testCase.testSafeRange(); } public void testSafeRange_maxLessThanMin() throws Exception { com.google.common.escape.ArrayBasedCharEscaperTest testCase = new com.google.common.escape.ArrayBasedCharEscaperTest(); testCase.testSafeRange_maxLessThanMin(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.escape; public class UnicodeEscaperTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.escape.testModule"; } public void testBadStrings() throws Exception { com.google.common.escape.UnicodeEscaperTest testCase = new com.google.common.escape.UnicodeEscaperTest(); testCase.testBadStrings(); } public void testCodePointAt_IndexOutOfBoundsException() throws Exception { com.google.common.escape.UnicodeEscaperTest testCase = new com.google.common.escape.UnicodeEscaperTest(); testCase.testCodePointAt_IndexOutOfBoundsException(); } public void testFalsePositivesForNextEscapedIndex() throws Exception { com.google.common.escape.UnicodeEscaperTest testCase = new com.google.common.escape.UnicodeEscaperTest(); testCase.testFalsePositivesForNextEscapedIndex(); } public void testGrowBuffer() throws Exception { com.google.common.escape.UnicodeEscaperTest testCase = new com.google.common.escape.UnicodeEscaperTest(); testCase.testGrowBuffer(); } public void testNopEscaper() throws Exception { com.google.common.escape.UnicodeEscaperTest testCase = new com.google.common.escape.UnicodeEscaperTest(); testCase.testNopEscaper(); } public void testNullInput() throws Exception { com.google.common.escape.UnicodeEscaperTest testCase = new com.google.common.escape.UnicodeEscaperTest(); testCase.testNullInput(); } public void testSimpleEscaper() throws Exception { com.google.common.escape.UnicodeEscaperTest testCase = new com.google.common.escape.UnicodeEscaperTest(); testCase.testSimpleEscaper(); } public void testSurrogatePairs() throws Exception { com.google.common.escape.UnicodeEscaperTest testCase = new com.google.common.escape.UnicodeEscaperTest(); testCase.testSurrogatePairs(); } public void testTrailingHighSurrogate() throws Exception { com.google.common.escape.UnicodeEscaperTest testCase = new com.google.common.escape.UnicodeEscaperTest(); testCase.testTrailingHighSurrogate(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.escape; public class ArrayBasedEscaperMapTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.escape.testModule"; } public void testEmptyMap() throws Exception { com.google.common.escape.ArrayBasedEscaperMapTest testCase = new com.google.common.escape.ArrayBasedEscaperMapTest(); testCase.testEmptyMap(); } public void testMapLength() throws Exception { com.google.common.escape.ArrayBasedEscaperMapTest testCase = new com.google.common.escape.ArrayBasedEscaperMapTest(); testCase.testMapLength(); } public void testMapping() throws Exception { com.google.common.escape.ArrayBasedEscaperMapTest testCase = new com.google.common.escape.ArrayBasedEscaperMapTest(); testCase.testMapping(); } public void testNullMap() throws Exception { com.google.common.escape.ArrayBasedEscaperMapTest testCase = new com.google.common.escape.ArrayBasedEscaperMapTest(); testCase.testNullMap(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.net; public class UrlEscapersTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.net.testModule"; } public void testUrlFormParameterEscaper() throws Exception { com.google.common.net.UrlEscapersTest testCase = new com.google.common.net.UrlEscapersTest(); testCase.testUrlFormParameterEscaper(); } public void testUrlPathSegmentEscaper() throws Exception { com.google.common.net.UrlEscapersTest testCase = new com.google.common.net.UrlEscapersTest(); testCase.testUrlPathSegmentEscaper(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.net; public class MediaTypeTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.net.testModule"; } public void testCreateApplicationType() throws Exception { com.google.common.net.MediaTypeTest testCase = new com.google.common.net.MediaTypeTest(); testCase.testCreateApplicationType(); } public void testCreateAudioType() throws Exception { com.google.common.net.MediaTypeTest testCase = new com.google.common.net.MediaTypeTest(); testCase.testCreateAudioType(); } public void testCreateImageType() throws Exception { com.google.common.net.MediaTypeTest testCase = new com.google.common.net.MediaTypeTest(); testCase.testCreateImageType(); } public void testCreateTextType() throws Exception { com.google.common.net.MediaTypeTest testCase = new com.google.common.net.MediaTypeTest(); testCase.testCreateTextType(); } public void testCreateVideoType() throws Exception { com.google.common.net.MediaTypeTest testCase = new com.google.common.net.MediaTypeTest(); testCase.testCreateVideoType(); } public void testCreate_invalidSubtype() throws Exception { com.google.common.net.MediaTypeTest testCase = new com.google.common.net.MediaTypeTest(); testCase.testCreate_invalidSubtype(); } public void testCreate_invalidType() throws Exception { com.google.common.net.MediaTypeTest testCase = new com.google.common.net.MediaTypeTest(); testCase.testCreate_invalidType(); } public void testCreate_wildcardTypeDeclaredSubtype() throws Exception { com.google.common.net.MediaTypeTest testCase = new com.google.common.net.MediaTypeTest(); testCase.testCreate_wildcardTypeDeclaredSubtype(); } public void testEquals() throws Exception { com.google.common.net.MediaTypeTest testCase = new com.google.common.net.MediaTypeTest(); testCase.testEquals(); } public void testGetCharset() throws Exception { com.google.common.net.MediaTypeTest testCase = new com.google.common.net.MediaTypeTest(); testCase.testGetCharset(); } public void testGetCharset_illegalCharset() throws Exception { com.google.common.net.MediaTypeTest testCase = new com.google.common.net.MediaTypeTest(); testCase.testGetCharset_illegalCharset(); } public void testGetCharset_tooMany() throws Exception { com.google.common.net.MediaTypeTest testCase = new com.google.common.net.MediaTypeTest(); testCase.testGetCharset_tooMany(); } public void testGetCharset_unsupportedCharset() throws Exception { com.google.common.net.MediaTypeTest testCase = new com.google.common.net.MediaTypeTest(); testCase.testGetCharset_unsupportedCharset(); } public void testGetParameters() throws Exception { com.google.common.net.MediaTypeTest testCase = new com.google.common.net.MediaTypeTest(); testCase.testGetParameters(); } public void testGetSubtype() throws Exception { com.google.common.net.MediaTypeTest testCase = new com.google.common.net.MediaTypeTest(); testCase.testGetSubtype(); } public void testGetType() throws Exception { com.google.common.net.MediaTypeTest testCase = new com.google.common.net.MediaTypeTest(); testCase.testGetType(); } public void testHasWildcard() throws Exception { com.google.common.net.MediaTypeTest testCase = new com.google.common.net.MediaTypeTest(); testCase.testHasWildcard(); } public void testIs() throws Exception { com.google.common.net.MediaTypeTest testCase = new com.google.common.net.MediaTypeTest(); testCase.testIs(); } public void testParse_badInput() throws Exception { com.google.common.net.MediaTypeTest testCase = new com.google.common.net.MediaTypeTest(); testCase.testParse_badInput(); } public void testParse_empty() throws Exception { com.google.common.net.MediaTypeTest testCase = new com.google.common.net.MediaTypeTest(); testCase.testParse_empty(); } public void testToString() throws Exception { com.google.common.net.MediaTypeTest testCase = new com.google.common.net.MediaTypeTest(); testCase.testToString(); } public void testWithCharset() throws Exception { com.google.common.net.MediaTypeTest testCase = new com.google.common.net.MediaTypeTest(); testCase.testWithCharset(); } public void testWithParameter() throws Exception { com.google.common.net.MediaTypeTest testCase = new com.google.common.net.MediaTypeTest(); testCase.testWithParameter(); } public void testWithParameter_invalidAttribute() throws Exception { com.google.common.net.MediaTypeTest testCase = new com.google.common.net.MediaTypeTest(); testCase.testWithParameter_invalidAttribute(); } public void testWithParameters() throws Exception { com.google.common.net.MediaTypeTest testCase = new com.google.common.net.MediaTypeTest(); testCase.testWithParameters(); } public void testWithParameters_invalidAttribute() throws Exception { com.google.common.net.MediaTypeTest testCase = new com.google.common.net.MediaTypeTest(); testCase.testWithParameters_invalidAttribute(); } public void testWithoutParameters() throws Exception { com.google.common.net.MediaTypeTest testCase = new com.google.common.net.MediaTypeTest(); testCase.testWithoutParameters(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.net; public class InternetDomainNameTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.net.testModule"; } public void testChild() throws Exception { com.google.common.net.InternetDomainNameTest testCase = new com.google.common.net.InternetDomainNameTest(); testCase.testChild(); } public void testEquality() throws Exception { com.google.common.net.InternetDomainNameTest testCase = new com.google.common.net.InternetDomainNameTest(); testCase.testEquality(); } public void testExclusion() throws Exception { com.google.common.net.InternetDomainNameTest testCase = new com.google.common.net.InternetDomainNameTest(); testCase.testExclusion(); } public void testInvalid() throws Exception { com.google.common.net.InternetDomainNameTest testCase = new com.google.common.net.InternetDomainNameTest(); testCase.testInvalid(); } public void testInvalidTopPrivateDomain() throws Exception { com.google.common.net.InternetDomainNameTest testCase = new com.google.common.net.InternetDomainNameTest(); testCase.testInvalidTopPrivateDomain(); } public void testIsValid() throws Exception { com.google.common.net.InternetDomainNameTest testCase = new com.google.common.net.InternetDomainNameTest(); testCase.testIsValid(); } public void testMultipleUnders() throws Exception { com.google.common.net.InternetDomainNameTest testCase = new com.google.common.net.InternetDomainNameTest(); testCase.testMultipleUnders(); } public void testParent() throws Exception { com.google.common.net.InternetDomainNameTest testCase = new com.google.common.net.InternetDomainNameTest(); testCase.testParent(); } public void testParentChild() throws Exception { com.google.common.net.InternetDomainNameTest testCase = new com.google.common.net.InternetDomainNameTest(); testCase.testParentChild(); } public void testPublicSuffix() throws Exception { com.google.common.net.InternetDomainNameTest testCase = new com.google.common.net.InternetDomainNameTest(); testCase.testPublicSuffix(); } public void testTopPrivateDomain() throws Exception { com.google.common.net.InternetDomainNameTest testCase = new com.google.common.net.InternetDomainNameTest(); testCase.testTopPrivateDomain(); } public void testUnderPrivateDomain() throws Exception { com.google.common.net.InternetDomainNameTest testCase = new com.google.common.net.InternetDomainNameTest(); testCase.testUnderPrivateDomain(); } public void testUnderPublicSuffix() throws Exception { com.google.common.net.InternetDomainNameTest testCase = new com.google.common.net.InternetDomainNameTest(); testCase.testUnderPublicSuffix(); } public void testValid() throws Exception { com.google.common.net.InternetDomainNameTest testCase = new com.google.common.net.InternetDomainNameTest(); testCase.testValid(); } public void testValidTopPrivateDomain() throws Exception { com.google.common.net.InternetDomainNameTest testCase = new com.google.common.net.InternetDomainNameTest(); testCase.testValidTopPrivateDomain(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.net; public class PercentEscaperTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.net.testModule"; } public void testBadArguments_badchars() throws Exception { com.google.common.net.PercentEscaperTest testCase = new com.google.common.net.PercentEscaperTest(); testCase.testBadArguments_badchars(); } public void testBadArguments_null() throws Exception { com.google.common.net.PercentEscaperTest testCase = new com.google.common.net.PercentEscaperTest(); testCase.testBadArguments_null(); } public void testBadArguments_plusforspace() throws Exception { com.google.common.net.PercentEscaperTest testCase = new com.google.common.net.PercentEscaperTest(); testCase.testBadArguments_plusforspace(); } public void testCustomEscaper() throws Exception { com.google.common.net.PercentEscaperTest testCase = new com.google.common.net.PercentEscaperTest(); testCase.testCustomEscaper(); } public void testCustomEscaper_withpercent() throws Exception { com.google.common.net.PercentEscaperTest testCase = new com.google.common.net.PercentEscaperTest(); testCase.testCustomEscaper_withpercent(); } public void testPlusForSpace() throws Exception { com.google.common.net.PercentEscaperTest testCase = new com.google.common.net.PercentEscaperTest(); testCase.testPlusForSpace(); } public void testSimpleEscaper() throws Exception { com.google.common.net.PercentEscaperTest testCase = new com.google.common.net.PercentEscaperTest(); testCase.testSimpleEscaper(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.net; public class HostAndPortTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.net.testModule"; } public void testFromParts() throws Exception { com.google.common.net.HostAndPortTest testCase = new com.google.common.net.HostAndPortTest(); testCase.testFromParts(); } public void testFromStringBadDefaultPort() throws Exception { com.google.common.net.HostAndPortTest testCase = new com.google.common.net.HostAndPortTest(); testCase.testFromStringBadDefaultPort(); } public void testFromStringBadPort() throws Exception { com.google.common.net.HostAndPortTest testCase = new com.google.common.net.HostAndPortTest(); testCase.testFromStringBadPort(); } public void testFromStringParseableNonsense() throws Exception { com.google.common.net.HostAndPortTest testCase = new com.google.common.net.HostAndPortTest(); testCase.testFromStringParseableNonsense(); } public void testFromStringUnparseableNonsense() throws Exception { com.google.common.net.HostAndPortTest testCase = new com.google.common.net.HostAndPortTest(); testCase.testFromStringUnparseableNonsense(); } public void testFromStringUnusedDefaultPort() throws Exception { com.google.common.net.HostAndPortTest testCase = new com.google.common.net.HostAndPortTest(); testCase.testFromStringUnusedDefaultPort(); } public void testFromStringWellFormed() throws Exception { com.google.common.net.HostAndPortTest testCase = new com.google.common.net.HostAndPortTest(); testCase.testFromStringWellFormed(); } public void testGetPortOrDefault() throws Exception { com.google.common.net.HostAndPortTest testCase = new com.google.common.net.HostAndPortTest(); testCase.testGetPortOrDefault(); } public void testHashCodeAndEquals() throws Exception { com.google.common.net.HostAndPortTest testCase = new com.google.common.net.HostAndPortTest(); testCase.testHashCodeAndEquals(); } public void testRequireBracketsForIPv6() throws Exception { com.google.common.net.HostAndPortTest testCase = new com.google.common.net.HostAndPortTest(); testCase.testRequireBracketsForIPv6(); } public void testSerialization() throws Exception { com.google.common.net.HostAndPortTest testCase = new com.google.common.net.HostAndPortTest(); testCase.testSerialization(); } public void testToString() throws Exception { com.google.common.net.HostAndPortTest testCase = new com.google.common.net.HostAndPortTest(); testCase.testToString(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class AbstractSequentialIteratorTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testBroken() throws Exception { com.google.common.collect.AbstractSequentialIteratorTest testCase = new com.google.common.collect.AbstractSequentialIteratorTest(); testCase.testBroken(); } public void testDoubler() throws Exception { com.google.common.collect.AbstractSequentialIteratorTest testCase = new com.google.common.collect.AbstractSequentialIteratorTest(); testCase.testDoubler(); } public void testEmpty() throws Exception { com.google.common.collect.AbstractSequentialIteratorTest testCase = new com.google.common.collect.AbstractSequentialIteratorTest(); testCase.testEmpty(); } public void testSampleCode() throws Exception { com.google.common.collect.AbstractSequentialIteratorTest testCase = new com.google.common.collect.AbstractSequentialIteratorTest(); testCase.testSampleCode(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class LinkedListMultimapTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testCreateFromIllegalSize() throws Exception { com.google.common.collect.LinkedListMultimapTest testCase = new com.google.common.collect.LinkedListMultimapTest(); testCase.testCreateFromIllegalSize(); } public void testCreateFromMultimap() throws Exception { com.google.common.collect.LinkedListMultimapTest testCase = new com.google.common.collect.LinkedListMultimapTest(); testCase.testCreateFromMultimap(); } public void testCreateFromSize() throws Exception { com.google.common.collect.LinkedListMultimapTest testCase = new com.google.common.collect.LinkedListMultimapTest(); testCase.testCreateFromSize(); } public void testEntriesAfterMultimapUpdate() throws Exception { com.google.common.collect.LinkedListMultimapTest testCase = new com.google.common.collect.LinkedListMultimapTest(); testCase.testEntriesAfterMultimapUpdate(); } public void testEquals() throws Exception { com.google.common.collect.LinkedListMultimapTest testCase = new com.google.common.collect.LinkedListMultimapTest(); testCase.testEquals(); } public void testGetRandomAccess() throws Exception { com.google.common.collect.LinkedListMultimapTest testCase = new com.google.common.collect.LinkedListMultimapTest(); testCase.testGetRandomAccess(); } public void testLinkedAsMapEntries() throws Exception { com.google.common.collect.LinkedListMultimapTest testCase = new com.google.common.collect.LinkedListMultimapTest(); testCase.testLinkedAsMapEntries(); } public void testLinkedClear() throws Exception { com.google.common.collect.LinkedListMultimapTest testCase = new com.google.common.collect.LinkedListMultimapTest(); testCase.testLinkedClear(); } public void testLinkedEntries() throws Exception { com.google.common.collect.LinkedListMultimapTest testCase = new com.google.common.collect.LinkedListMultimapTest(); testCase.testLinkedEntries(); } public void testLinkedGetAdd() throws Exception { com.google.common.collect.LinkedListMultimapTest testCase = new com.google.common.collect.LinkedListMultimapTest(); testCase.testLinkedGetAdd(); } public void testLinkedGetInsert() throws Exception { com.google.common.collect.LinkedListMultimapTest testCase = new com.google.common.collect.LinkedListMultimapTest(); testCase.testLinkedGetInsert(); } public void testLinkedKeySet() throws Exception { com.google.common.collect.LinkedListMultimapTest testCase = new com.google.common.collect.LinkedListMultimapTest(); testCase.testLinkedKeySet(); } public void testLinkedKeys() throws Exception { com.google.common.collect.LinkedListMultimapTest testCase = new com.google.common.collect.LinkedListMultimapTest(); testCase.testLinkedKeys(); } public void testLinkedPutAllMultimap() throws Exception { com.google.common.collect.LinkedListMultimapTest testCase = new com.google.common.collect.LinkedListMultimapTest(); testCase.testLinkedPutAllMultimap(); } public void testLinkedPutInOrder() throws Exception { com.google.common.collect.LinkedListMultimapTest testCase = new com.google.common.collect.LinkedListMultimapTest(); testCase.testLinkedPutInOrder(); } public void testLinkedPutOutOfOrder() throws Exception { com.google.common.collect.LinkedListMultimapTest testCase = new com.google.common.collect.LinkedListMultimapTest(); testCase.testLinkedPutOutOfOrder(); } public void testLinkedReplaceValues() throws Exception { com.google.common.collect.LinkedListMultimapTest testCase = new com.google.common.collect.LinkedListMultimapTest(); testCase.testLinkedReplaceValues(); } public void testLinkedValues() throws Exception { com.google.common.collect.LinkedListMultimapTest testCase = new com.google.common.collect.LinkedListMultimapTest(); testCase.testLinkedValues(); } public void testRemoveAllRandomAccess() throws Exception { com.google.common.collect.LinkedListMultimapTest testCase = new com.google.common.collect.LinkedListMultimapTest(); testCase.testRemoveAllRandomAccess(); } public void testReplaceValuesRandomAccess() throws Exception { com.google.common.collect.LinkedListMultimapTest testCase = new com.google.common.collect.LinkedListMultimapTest(); testCase.testReplaceValuesRandomAccess(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class GeneralRangeTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testCreateEmptyRangeClosedOpenSucceeds() throws Exception { com.google.common.collect.GeneralRangeTest testCase = new com.google.common.collect.GeneralRangeTest(); testCase.testCreateEmptyRangeClosedOpenSucceeds(); } public void testCreateEmptyRangeFails() throws Exception { com.google.common.collect.GeneralRangeTest testCase = new com.google.common.collect.GeneralRangeTest(); testCase.testCreateEmptyRangeFails(); } public void testCreateEmptyRangeOpenClosedSucceeds() throws Exception { com.google.common.collect.GeneralRangeTest testCase = new com.google.common.collect.GeneralRangeTest(); testCase.testCreateEmptyRangeOpenClosedSucceeds(); } public void testCreateEmptyRangeOpenOpenFails() throws Exception { com.google.common.collect.GeneralRangeTest testCase = new com.google.common.collect.GeneralRangeTest(); testCase.testCreateEmptyRangeOpenOpenFails(); } public void testCreateSingletonRangeSucceeds() throws Exception { com.google.common.collect.GeneralRangeTest testCase = new com.google.common.collect.GeneralRangeTest(); testCase.testCreateSingletonRangeSucceeds(); } public void testDoublyBoundedAgainstRange() throws Exception { com.google.common.collect.GeneralRangeTest testCase = new com.google.common.collect.GeneralRangeTest(); testCase.testDoublyBoundedAgainstRange(); } public void testFromRangeAll() throws Exception { com.google.common.collect.GeneralRangeTest testCase = new com.google.common.collect.GeneralRangeTest(); testCase.testFromRangeAll(); } public void testFromRangeOneEnd() throws Exception { com.google.common.collect.GeneralRangeTest testCase = new com.google.common.collect.GeneralRangeTest(); testCase.testFromRangeOneEnd(); } public void testFromRangeTwoEnds() throws Exception { com.google.common.collect.GeneralRangeTest testCase = new com.google.common.collect.GeneralRangeTest(); testCase.testFromRangeTwoEnds(); } public void testIntersectAgainstBiggerRange() throws Exception { com.google.common.collect.GeneralRangeTest testCase = new com.google.common.collect.GeneralRangeTest(); testCase.testIntersectAgainstBiggerRange(); } public void testIntersectAgainstMatchingEndpointsRange() throws Exception { com.google.common.collect.GeneralRangeTest testCase = new com.google.common.collect.GeneralRangeTest(); testCase.testIntersectAgainstMatchingEndpointsRange(); } public void testIntersectAgainstSmallerRange() throws Exception { com.google.common.collect.GeneralRangeTest testCase = new com.google.common.collect.GeneralRangeTest(); testCase.testIntersectAgainstSmallerRange(); } public void testIntersectNonOverlappingRange() throws Exception { com.google.common.collect.GeneralRangeTest testCase = new com.google.common.collect.GeneralRangeTest(); testCase.testIntersectNonOverlappingRange(); } public void testIntersectOverlappingRange() throws Exception { com.google.common.collect.GeneralRangeTest testCase = new com.google.common.collect.GeneralRangeTest(); testCase.testIntersectOverlappingRange(); } public void testLowerRange() throws Exception { com.google.common.collect.GeneralRangeTest testCase = new com.google.common.collect.GeneralRangeTest(); testCase.testLowerRange(); } public void testReverse() throws Exception { com.google.common.collect.GeneralRangeTest testCase = new com.google.common.collect.GeneralRangeTest(); testCase.testReverse(); } public void testSingletonRange() throws Exception { com.google.common.collect.GeneralRangeTest testCase = new com.google.common.collect.GeneralRangeTest(); testCase.testSingletonRange(); } public void testUpperRange() throws Exception { com.google.common.collect.GeneralRangeTest testCase = new com.google.common.collect.GeneralRangeTest(); testCase.testUpperRange(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class NewCustomTableTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testClear() throws Exception { com.google.common.collect.NewCustomTableTest testCase = new com.google.common.collect.NewCustomTableTest(); testCase.setUp(); testCase.testClear(); } public void testColumn() throws Exception { com.google.common.collect.NewCustomTableTest testCase = new com.google.common.collect.NewCustomTableTest(); testCase.setUp(); testCase.testColumn(); } public void testColumnNull() throws Exception { com.google.common.collect.NewCustomTableTest testCase = new com.google.common.collect.NewCustomTableTest(); testCase.setUp(); testCase.testColumnNull(); } public void testColumnSetPartialOverlap() throws Exception { com.google.common.collect.NewCustomTableTest testCase = new com.google.common.collect.NewCustomTableTest(); testCase.setUp(); testCase.testColumnSetPartialOverlap(); } public void testContains() throws Exception { com.google.common.collect.NewCustomTableTest testCase = new com.google.common.collect.NewCustomTableTest(); testCase.setUp(); testCase.testContains(); } public void testContainsColumn() throws Exception { com.google.common.collect.NewCustomTableTest testCase = new com.google.common.collect.NewCustomTableTest(); testCase.setUp(); testCase.testContainsColumn(); } public void testContainsRow() throws Exception { com.google.common.collect.NewCustomTableTest testCase = new com.google.common.collect.NewCustomTableTest(); testCase.setUp(); testCase.testContainsRow(); } public void testContainsValue() throws Exception { com.google.common.collect.NewCustomTableTest testCase = new com.google.common.collect.NewCustomTableTest(); testCase.setUp(); testCase.testContainsValue(); } public void testEquals() throws Exception { com.google.common.collect.NewCustomTableTest testCase = new com.google.common.collect.NewCustomTableTest(); testCase.setUp(); testCase.testEquals(); } public void testGet() throws Exception { com.google.common.collect.NewCustomTableTest testCase = new com.google.common.collect.NewCustomTableTest(); testCase.setUp(); testCase.testGet(); } public void testHashCode() throws Exception { com.google.common.collect.NewCustomTableTest testCase = new com.google.common.collect.NewCustomTableTest(); testCase.setUp(); testCase.testHashCode(); } public void testIsEmpty() throws Exception { com.google.common.collect.NewCustomTableTest testCase = new com.google.common.collect.NewCustomTableTest(); testCase.setUp(); testCase.testIsEmpty(); } public void testPut() throws Exception { com.google.common.collect.NewCustomTableTest testCase = new com.google.common.collect.NewCustomTableTest(); testCase.setUp(); testCase.testPut(); } public void testPutAllTable() throws Exception { com.google.common.collect.NewCustomTableTest testCase = new com.google.common.collect.NewCustomTableTest(); testCase.setUp(); testCase.testPutAllTable(); } public void testPutNull() throws Exception { com.google.common.collect.NewCustomTableTest testCase = new com.google.common.collect.NewCustomTableTest(); testCase.setUp(); testCase.testPutNull(); } public void testPutNullReplace() throws Exception { com.google.common.collect.NewCustomTableTest testCase = new com.google.common.collect.NewCustomTableTest(); testCase.setUp(); testCase.testPutNullReplace(); } public void testRemove() throws Exception { com.google.common.collect.NewCustomTableTest testCase = new com.google.common.collect.NewCustomTableTest(); testCase.setUp(); testCase.testRemove(); } public void testRow() throws Exception { com.google.common.collect.NewCustomTableTest testCase = new com.google.common.collect.NewCustomTableTest(); testCase.setUp(); testCase.testRow(); } public void testRowClearAndPut() throws Exception { com.google.common.collect.NewCustomTableTest testCase = new com.google.common.collect.NewCustomTableTest(); testCase.setUp(); testCase.testRowClearAndPut(); } public void testRowKeySetOrdering() throws Exception { com.google.common.collect.NewCustomTableTest testCase = new com.google.common.collect.NewCustomTableTest(); testCase.setUp(); testCase.testRowKeySetOrdering(); } public void testRowNull() throws Exception { com.google.common.collect.NewCustomTableTest testCase = new com.google.common.collect.NewCustomTableTest(); testCase.setUp(); testCase.testRowNull(); } public void testRowOrdering() throws Exception { com.google.common.collect.NewCustomTableTest testCase = new com.google.common.collect.NewCustomTableTest(); testCase.setUp(); testCase.testRowOrdering(); } public void testSize() throws Exception { com.google.common.collect.NewCustomTableTest testCase = new com.google.common.collect.NewCustomTableTest(); testCase.setUp(); testCase.testSize(); } public void testToStringSize1() throws Exception { com.google.common.collect.NewCustomTableTest testCase = new com.google.common.collect.NewCustomTableTest(); testCase.setUp(); testCase.testToStringSize1(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class MultimapsTransformValuesAsMapTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testClear() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testClear(); } public void testContainsKey() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testContainsKey(); } public void testContainsValue() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testContainsValue(); } public void testEntrySet() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testEntrySet(); } public void testEntrySetAddAndAddAll() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testEntrySetAddAndAddAll(); } public void testEntrySetClear() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testEntrySetClear(); } public void testEntrySetContainsEntryIncompatibleKey() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testEntrySetContainsEntryIncompatibleKey(); } public void testEntrySetContainsEntryNullKeyMissing() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testEntrySetContainsEntryNullKeyMissing(); } public void testEntrySetContainsEntryNullKeyPresent() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testEntrySetContainsEntryNullKeyPresent(); } public void testEntrySetForEmptyMap() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testEntrySetForEmptyMap(); } public void testEntrySetIteratorRemove() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testEntrySetIteratorRemove(); } public void testEntrySetRemove() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testEntrySetRemove(); } public void testEntrySetRemoveAll() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testEntrySetRemoveAll(); } public void testEntrySetRemoveAllNullFromEmpty() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testEntrySetRemoveAllNullFromEmpty(); } public void testEntrySetRemoveDifferentValue() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testEntrySetRemoveDifferentValue(); } public void testEntrySetRemoveMissingKey() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testEntrySetRemoveMissingKey(); } public void testEntrySetRemoveNullKeyMissing() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testEntrySetRemoveNullKeyMissing(); } public void testEntrySetRemoveNullKeyPresent() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testEntrySetRemoveNullKeyPresent(); } public void testEntrySetRetainAll() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testEntrySetRetainAll(); } public void testEntrySetRetainAllNullFromEmpty() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testEntrySetRetainAllNullFromEmpty(); } public void testEntrySetSetValue() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testEntrySetSetValue(); } public void testEntrySetSetValueSameValue() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testEntrySetSetValueSameValue(); } public void testEqualsForEmptyMap() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testEqualsForEmptyMap(); } public void testEqualsForEqualMap() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testEqualsForEqualMap(); } public void testEqualsForLargerMap() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testEqualsForLargerMap(); } public void testEqualsForSmallerMap() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testEqualsForSmallerMap(); } public void testGet() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testGet(); } public void testGetForEmptyMap() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testGetForEmptyMap(); } public void testGetNull() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testGetNull(); } public void testHashCode() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testHashCode(); } public void testHashCodeForEmptyMap() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testHashCodeForEmptyMap(); } public void testKeySetClear() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testKeySetClear(); } public void testKeySetRemove() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testKeySetRemove(); } public void testKeySetRemoveAll() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testKeySetRemoveAll(); } public void testKeySetRemoveAllNullFromEmpty() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testKeySetRemoveAllNullFromEmpty(); } public void testKeySetRetainAll() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testKeySetRetainAll(); } public void testKeySetRetainAllNullFromEmpty() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testKeySetRetainAllNullFromEmpty(); } public void testPutAllExistingKey() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testPutAllExistingKey(); } public void testPutAllNewKey() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testPutAllNewKey(); } public void testPutExistingKey() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testPutExistingKey(); } public void testPutNewKey() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testPutNewKey(); } public void testPutNullKey() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testPutNullKey(); } public void testPutNullValue() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testPutNullValue(); } public void testPutNullValueForExistingKey() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testPutNullValueForExistingKey(); } public void testRemove() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testRemove(); } public void testRemoveMissingKey() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testRemoveMissingKey(); } public void testSize() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testSize(); } public void testValues() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testValues(); } public void testValuesClear() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testValuesClear(); } public void testValuesIteratorRemove() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testValuesIteratorRemove(); } public void testValuesRemove() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testValuesRemove(); } public void testValuesRemoveAll() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testValuesRemoveAll(); } public void testValuesRemoveAllNullFromEmpty() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testValuesRemoveAllNullFromEmpty(); } public void testValuesRemoveMissing() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testValuesRemoveMissing(); } public void testValuesRetainAll() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testValuesRetainAll(); } public void testValuesRetainAllNullFromEmpty() throws Exception { com.google.common.collect.MultimapsTransformValuesAsMapTest testCase = new com.google.common.collect.MultimapsTransformValuesAsMapTest(); testCase.testValuesRetainAllNullFromEmpty(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class ImmutableMultimapAsMapImplementsMapTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testClear() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testClear(); } public void testContainsKey() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testContainsKey(); } public void testContainsValue() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testContainsValue(); } public void testEntrySet() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testEntrySet(); } public void testEntrySetAddAndAddAll() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testEntrySetAddAndAddAll(); } public void testEntrySetClear() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testEntrySetClear(); } public void testEntrySetContainsEntryIncompatibleKey() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testEntrySetContainsEntryIncompatibleKey(); } public void testEntrySetContainsEntryNullKeyMissing() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testEntrySetContainsEntryNullKeyMissing(); } public void testEntrySetContainsEntryNullKeyPresent() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testEntrySetContainsEntryNullKeyPresent(); } public void testEntrySetForEmptyMap() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testEntrySetForEmptyMap(); } public void testEntrySetIteratorRemove() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testEntrySetIteratorRemove(); } public void testEntrySetRemove() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testEntrySetRemove(); } public void testEntrySetRemoveAll() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testEntrySetRemoveAll(); } public void testEntrySetRemoveAllNullFromEmpty() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testEntrySetRemoveAllNullFromEmpty(); } public void testEntrySetRemoveDifferentValue() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testEntrySetRemoveDifferentValue(); } public void testEntrySetRemoveMissingKey() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testEntrySetRemoveMissingKey(); } public void testEntrySetRemoveNullKeyMissing() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testEntrySetRemoveNullKeyMissing(); } public void testEntrySetRemoveNullKeyPresent() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testEntrySetRemoveNullKeyPresent(); } public void testEntrySetRetainAll() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testEntrySetRetainAll(); } public void testEntrySetRetainAllNullFromEmpty() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testEntrySetRetainAllNullFromEmpty(); } public void testEntrySetSetValue() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testEntrySetSetValue(); } public void testEntrySetSetValueSameValue() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testEntrySetSetValueSameValue(); } public void testEqualsForEmptyMap() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testEqualsForEmptyMap(); } public void testEqualsForEqualMap() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testEqualsForEqualMap(); } public void testEqualsForLargerMap() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testEqualsForLargerMap(); } public void testEqualsForSmallerMap() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testEqualsForSmallerMap(); } public void testGet() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testGet(); } public void testGetForEmptyMap() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testGetForEmptyMap(); } public void testGetNull() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testGetNull(); } public void testHashCode() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testHashCode(); } public void testHashCodeForEmptyMap() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testHashCodeForEmptyMap(); } public void testKeySetClear() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testKeySetClear(); } public void testKeySetRemove() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testKeySetRemove(); } public void testKeySetRemoveAll() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testKeySetRemoveAll(); } public void testKeySetRemoveAllNullFromEmpty() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testKeySetRemoveAllNullFromEmpty(); } public void testKeySetRetainAll() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testKeySetRetainAll(); } public void testKeySetRetainAllNullFromEmpty() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testKeySetRetainAllNullFromEmpty(); } public void testPutAllExistingKey() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testPutAllExistingKey(); } public void testPutAllNewKey() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testPutAllNewKey(); } public void testPutExistingKey() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testPutExistingKey(); } public void testPutNewKey() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testPutNewKey(); } public void testPutNullKey() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testPutNullKey(); } public void testPutNullValue() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testPutNullValue(); } public void testPutNullValueForExistingKey() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testPutNullValueForExistingKey(); } public void testRemove() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testRemove(); } public void testRemoveMissingKey() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testRemoveMissingKey(); } public void testSize() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testSize(); } public void testValues() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testValues(); } public void testValuesClear() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testValuesClear(); } public void testValuesIteratorRemove() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testValuesIteratorRemove(); } public void testValuesRemove() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testValuesRemove(); } public void testValuesRemoveAll() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testValuesRemoveAll(); } public void testValuesRemoveAllNullFromEmpty() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testValuesRemoveAllNullFromEmpty(); } public void testValuesRemoveMissing() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testValuesRemoveMissing(); } public void testValuesRetainAll() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testValuesRetainAll(); } public void testValuesRetainAllNullFromEmpty() throws Exception { com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ImmutableMultimapAsMapImplementsMapTest(); testCase.testValuesRetainAllNullFromEmpty(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class IteratorsTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testAddAllToList() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testAddAllToList(); } public void testAddAllToSet() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testAddAllToSet(); } public void testAddAllWithEmptyIterator() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testAddAllWithEmptyIterator(); } public void testAdvance_basic() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testAdvance_basic(); } public void testAdvance_illegalArgument() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testAdvance_illegalArgument(); } public void testAdvance_pastEnd() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testAdvance_pastEnd(); } public void testAll() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testAll(); } public void testAny() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testAny(); } public void testAsEnumerationEmpty() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testAsEnumerationEmpty(); } public void testAsEnumerationSingleton() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testAsEnumerationSingleton(); } public void testAsEnumerationTypical() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testAsEnumerationTypical(); } public void testConcatContainingNull() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testConcatContainingNull(); } public void testConcatVarArgsContainingNull() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testConcatVarArgsContainingNull(); } public void testConsumingIterator() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testConsumingIterator(); } public void testCycleNoSuchElementException() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testCycleNoSuchElementException(); } public void testCycleOfEmpty() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testCycleOfEmpty(); } public void testCycleOfOne() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testCycleOfOne(); } public void testCycleOfOneWithRemove() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testCycleOfOneWithRemove(); } public void testCycleOfTwo() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testCycleOfTwo(); } public void testCycleOfTwoWithRemove() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testCycleOfTwoWithRemove(); } public void testCycleRemoveAfterHasNext() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testCycleRemoveAfterHasNext(); } public void testCycleRemoveSameElementTwice() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testCycleRemoveSameElementTwice(); } public void testCycleRemoveWithoutNext() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testCycleRemoveWithoutNext(); } public void testCycleWhenRemoveIsNotSupported() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testCycleWhenRemoveIsNotSupported(); } public void testElementsEqual() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testElementsEqual(); } public void testEmptyIterator() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testEmptyIterator(); } public void testEmptyListIterator() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testEmptyListIterator(); } public void testEmptyModifiableIterator() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testEmptyModifiableIterator(); } public void testFilterMatchAll() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testFilterMatchAll(); } public void testFilterNoMatch() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testFilterNoMatch(); } public void testFilterNothing() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testFilterNothing(); } public void testFilterSimple() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testFilterSimple(); } public void testFind_firstElement() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testFind_firstElement(); } public void testFind_lastElement() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testFind_lastElement(); } public void testFind_matchAlways() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testFind_matchAlways(); } public void testFind_notPresent() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testFind_notPresent(); } public void testFind_withDefault_first() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testFind_withDefault_first(); } public void testFind_withDefault_last() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testFind_withDefault_last(); } public void testFind_withDefault_matchAlways() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testFind_withDefault_matchAlways(); } public void testFind_withDefault_notPresent() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testFind_withDefault_notPresent(); } public void testFind_withDefault_notPresent_nullReturn() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testFind_withDefault_notPresent_nullReturn(); } public void testForArrayEmpty() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testForArrayEmpty(); } public void testForArrayLength0() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testForArrayLength0(); } public void testForArrayOffset() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testForArrayOffset(); } public void testForArrayTypical() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testForArrayTypical(); } public void testForEnumerationEmpty() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testForEnumerationEmpty(); } public void testForEnumerationSingleton() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testForEnumerationSingleton(); } public void testForEnumerationTypical() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testForEnumerationTypical(); } public void testFrequency() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testFrequency(); } public void testGetLast_basic() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testGetLast_basic(); } public void testGetLast_exception() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testGetLast_exception(); } public void testGetLast_withDefault_empty() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testGetLast_withDefault_empty(); } public void testGetLast_withDefault_empty_null() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testGetLast_withDefault_empty_null(); } public void testGetLast_withDefault_singleton() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testGetLast_withDefault_singleton(); } public void testGetLast_withDefault_two() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testGetLast_withDefault_two(); } public void testGetNext_withDefault_empty() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testGetNext_withDefault_empty(); } public void testGetNext_withDefault_empty_null() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testGetNext_withDefault_empty_null(); } public void testGetNext_withDefault_singleton() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testGetNext_withDefault_singleton(); } public void testGetNext_withDefault_two() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testGetNext_withDefault_two(); } public void testGetOnlyElement_noDefault_empty() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testGetOnlyElement_noDefault_empty(); } public void testGetOnlyElement_noDefault_fiveElements() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testGetOnlyElement_noDefault_fiveElements(); } public void testGetOnlyElement_noDefault_moreThanFiveElements() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testGetOnlyElement_noDefault_moreThanFiveElements(); } public void testGetOnlyElement_noDefault_moreThanOneLessThanFiveElements() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testGetOnlyElement_noDefault_moreThanOneLessThanFiveElements(); } public void testGetOnlyElement_noDefault_valid() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testGetOnlyElement_noDefault_valid(); } public void testGetOnlyElement_withDefault_empty() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testGetOnlyElement_withDefault_empty(); } public void testGetOnlyElement_withDefault_empty_null() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testGetOnlyElement_withDefault_empty_null(); } public void testGetOnlyElement_withDefault_singleton() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testGetOnlyElement_withDefault_singleton(); } public void testGetOnlyElement_withDefault_two() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testGetOnlyElement_withDefault_two(); } public void testGet_atSize() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testGet_atSize(); } public void testGet_basic() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testGet_basic(); } public void testGet_empty() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testGet_empty(); } public void testGet_negativeIndex() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testGet_negativeIndex(); } public void testGet_pastEnd() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testGet_pastEnd(); } public void testGet_withDefault_atSize() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testGet_withDefault_atSize(); } public void testGet_withDefault_basic() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testGet_withDefault_basic(); } public void testGet_withDefault_negativeIndex() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testGet_withDefault_negativeIndex(); } public void testGet_withDefault_pastEnd() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testGet_withDefault_pastEnd(); } public void testIndexOf_consumedData() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testIndexOf_consumedData(); } public void testIndexOf_consumedDataNoMatch() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testIndexOf_consumedDataNoMatch(); } public void testIndexOf_consumedDataWithDuplicates() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testIndexOf_consumedDataWithDuplicates(); } public void testLimit() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testLimit(); } public void testLimitRemove() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testLimitRemove(); } public void testNullFriendlyTransform() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testNullFriendlyTransform(); } public void testPaddedPartitionRandomAccess() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testPaddedPartitionRandomAccess(); } public void testPaddedPartition_badSize() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testPaddedPartition_badSize(); } public void testPaddedPartition_empty() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testPaddedPartition_empty(); } public void testPaddedPartition_singleton1() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testPaddedPartition_singleton1(); } public void testPaddedPartition_singleton2() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testPaddedPartition_singleton2(); } public void testPaddedPartition_view() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testPaddedPartition_view(); } public void testPartition_badSize() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testPartition_badSize(); } public void testPartition_empty() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testPartition_empty(); } public void testPartition_singleton1() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testPartition_singleton1(); } public void testPartition_singleton2() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testPartition_singleton2(); } public void testPartition_view() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testPartition_view(); } public void testPeekingIteratorShortCircuit() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testPeekingIteratorShortCircuit(); } public void testPoorlyBehavedTransform() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testPoorlyBehavedTransform(); } public void testRemoveAll() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testRemoveAll(); } public void testRemoveIf() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testRemoveIf(); } public void testRetainAll() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testRetainAll(); } public void testSize0() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testSize0(); } public void testSize1() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testSize1(); } public void testSize_partiallyConsumed() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testSize_partiallyConsumed(); } public void testToString() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testToString(); } public void testToStringEmptyIterator() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testToStringEmptyIterator(); } public void testToStringWithNull() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testToStringWithNull(); } public void testTransform() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testTransform(); } public void testTransformRemove() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testTransformRemove(); } public void testTryFind_alwaysFalse_isPresent() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testTryFind_alwaysFalse_isPresent(); } public void testTryFind_alwaysFalse_orDefault() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testTryFind_alwaysFalse_orDefault(); } public void testTryFind_alwaysTrue() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testTryFind_alwaysTrue(); } public void testTryFind_firstElement() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testTryFind_firstElement(); } public void testTryFind_lastElement() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testTryFind_lastElement(); } public void testUnmodifiableIteratorShortCircuit() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.testUnmodifiableIteratorShortCircuit(); } public void test_contains_nonnull_no() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.test_contains_nonnull_no(); } public void test_contains_nonnull_yes() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.test_contains_nonnull_yes(); } public void test_contains_null_no() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.test_contains_null_no(); } public void test_contains_null_yes() throws Exception { com.google.common.collect.IteratorsTest testCase = new com.google.common.collect.IteratorsTest(); testCase.test_contains_null_yes(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class MultimapsTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testAsMap_listMultimap() throws Exception { com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest(); testCase.testAsMap_listMultimap(); } public void testAsMap_multimap() throws Exception { com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest(); testCase.testAsMap_multimap(); } public void testAsMap_setMultimap() throws Exception { com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest(); testCase.testAsMap_setMultimap(); } public void testAsMap_sortedSetMultimap() throws Exception { com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest(); testCase.testAsMap_sortedSetMultimap(); } public void testFilteredKeysListMultimapGetBadValue() throws Exception { com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest(); testCase.testFilteredKeysListMultimapGetBadValue(); } public void testFilteredKeysSetMultimapGetBadValue() throws Exception { com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest(); testCase.testFilteredKeysSetMultimapGetBadValue(); } public void testFilteredKeysSetMultimapReplaceValues() throws Exception { com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest(); testCase.testFilteredKeysSetMultimapReplaceValues(); } public void testForMap() throws Exception { com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest(); testCase.testForMap(); } public void testForMapAsMap() throws Exception { com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest(); testCase.testForMapAsMap(); } public void testForMapGetIteration() throws Exception { com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest(); testCase.testForMapGetIteration(); } public void testForMapRemoveAll() throws Exception { com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest(); testCase.testForMapRemoveAll(); } public void testIndex() throws Exception { com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest(); testCase.testIndex(); } public void testIndexIterator() throws Exception { com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest(); testCase.testIndexIterator(); } public void testIndex_nullKey() throws Exception { com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest(); testCase.testIndex_nullKey(); } public void testIndex_nullValue() throws Exception { com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest(); testCase.testIndex_nullValue(); } public void testIndex_ordering() throws Exception { com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest(); testCase.testIndex_ordering(); } public void testInvertFrom() throws Exception { com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest(); testCase.testInvertFrom(); } public void testNewListMultimap() throws Exception { com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest(); testCase.testNewListMultimap(); } public void testNewMultimap() throws Exception { com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest(); testCase.testNewMultimap(); } public void testNewMultimapWithCollectionRejectingNegativeElements() throws Exception { com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest(); testCase.testNewMultimapWithCollectionRejectingNegativeElements(); } public void testNewSetMultimap() throws Exception { com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest(); testCase.testNewSetMultimap(); } public void testNewSortedSetMultimap() throws Exception { com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest(); testCase.testNewSortedSetMultimap(); } public void testSynchronizedMultimapSampleCodeCompilation() throws Exception { com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest(); testCase.testSynchronizedMultimapSampleCodeCompilation(); } public void testUnmodifiableArrayListMultimapRandomAccess() throws Exception { com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest(); testCase.testUnmodifiableArrayListMultimapRandomAccess(); } public void testUnmodifiableLinkedListMultimapRandomAccess() throws Exception { com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest(); testCase.testUnmodifiableLinkedListMultimapRandomAccess(); } public void testUnmodifiableListMultimapShortCircuit() throws Exception { com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest(); testCase.testUnmodifiableListMultimapShortCircuit(); } public void testUnmodifiableMultimapEntries() throws Exception { com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest(); testCase.testUnmodifiableMultimapEntries(); } public void testUnmodifiableMultimapIsView() throws Exception { com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest(); testCase.testUnmodifiableMultimapIsView(); } public void testUnmodifiableMultimapShortCircuit() throws Exception { com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest(); testCase.testUnmodifiableMultimapShortCircuit(); } public void testUnmodifiableSetMultimapShortCircuit() throws Exception { com.google.common.collect.MultimapsTest testCase = new com.google.common.collect.MultimapsTest(); testCase.testUnmodifiableSetMultimapShortCircuit(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class ConstrainedMapTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testPutWithAllowedKeyForbiddenValue() throws Exception { com.google.common.collect.ConstrainedMapTest testCase = new com.google.common.collect.ConstrainedMapTest(); testCase.testPutWithAllowedKeyForbiddenValue(); } public void testPutWithForbiddenKeyAllowedValue() throws Exception { com.google.common.collect.ConstrainedMapTest testCase = new com.google.common.collect.ConstrainedMapTest(); testCase.testPutWithForbiddenKeyAllowedValue(); } public void testPutWithForbiddenKeyForbiddenValue() throws Exception { com.google.common.collect.ConstrainedMapTest testCase = new com.google.common.collect.ConstrainedMapTest(); testCase.testPutWithForbiddenKeyForbiddenValue(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class ImmutableBiMapTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testDoubleInverse__BiMapSpecificTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.BiMapSpecificTests testCase = new com.google.common.collect.ImmutableBiMapTest.BiMapSpecificTests(); testCase.testDoubleInverse(); } public void testForcePut__BiMapSpecificTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.BiMapSpecificTests testCase = new com.google.common.collect.ImmutableBiMapTest.BiMapSpecificTests(); testCase.testForcePut(); } public void testKeySet__BiMapSpecificTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.BiMapSpecificTests testCase = new com.google.common.collect.ImmutableBiMapTest.BiMapSpecificTests(); testCase.testKeySet(); } public void testValues__BiMapSpecificTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.BiMapSpecificTests testCase = new com.google.common.collect.ImmutableBiMapTest.BiMapSpecificTests(); testCase.testValues(); } public void testBuilder__CreationTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests(); testCase.testBuilder(); } public void testBuilderPutAll__CreationTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests(); testCase.testBuilderPutAll(); } public void testBuilderPutAllWithEmptyMap__CreationTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests(); testCase.testBuilderPutAllWithEmptyMap(); } public void testBuilderPutNullKey__CreationTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests(); testCase.testBuilderPutNullKey(); } public void testBuilderPutNullKeyViaPutAll__CreationTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests(); testCase.testBuilderPutNullKeyViaPutAll(); } public void testBuilderPutNullValue__CreationTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests(); testCase.testBuilderPutNullValue(); } public void testBuilderPutNullValueViaPutAll__CreationTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests(); testCase.testBuilderPutNullValueViaPutAll(); } public void testBuilderReuse__CreationTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests(); testCase.testBuilderReuse(); } public void testCopyOf__CreationTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests(); testCase.testCopyOf(); } public void testCopyOfEmptyMap__CreationTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests(); testCase.testCopyOfEmptyMap(); } public void testCopyOfSingletonMap__CreationTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests(); testCase.testCopyOfSingletonMap(); } public void testDuplicateValues__CreationTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests(); testCase.testDuplicateValues(); } public void testEmpty__CreationTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests(); testCase.testEmpty(); } public void testEmptyBuilder__CreationTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests(); testCase.testEmptyBuilder(); } public void testFromHashMap__CreationTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests(); testCase.testFromHashMap(); } public void testFromImmutableMap__CreationTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests(); testCase.testFromImmutableMap(); } public void testOf__CreationTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests(); testCase.testOf(); } public void testOfNullKey__CreationTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests(); testCase.testOfNullKey(); } public void testOfNullValue__CreationTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests(); testCase.testOfNullValue(); } public void testOfWithDuplicateKey__CreationTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests(); testCase.testOfWithDuplicateKey(); } public void testPuttingTheSameKeyTwiceThrowsOnBuild__CreationTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests(); testCase.testPuttingTheSameKeyTwiceThrowsOnBuild(); } public void testSingletonBuilder__CreationTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.CreationTests testCase = new com.google.common.collect.ImmutableBiMapTest.CreationTests(); testCase.testSingletonBuilder(); } public void testClear__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testClear(); } public void testContainsKey__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testContainsKey(); } public void testContainsValue__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testContainsValue(); } public void testEntrySet__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testEntrySet(); } public void testEntrySetAddAndAddAll__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testEntrySetAddAndAddAll(); } public void testEntrySetClear__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testEntrySetClear(); } public void testEntrySetContainsEntryIncompatibleKey__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testEntrySetContainsEntryIncompatibleKey(); } public void testEntrySetContainsEntryNullKeyMissing__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testEntrySetContainsEntryNullKeyMissing(); } public void testEntrySetContainsEntryNullKeyPresent__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testEntrySetContainsEntryNullKeyPresent(); } public void testEntrySetForEmptyMap__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testEntrySetForEmptyMap(); } public void testEntrySetIteratorRemove__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testEntrySetIteratorRemove(); } public void testEntrySetRemove__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testEntrySetRemove(); } public void testEntrySetRemoveAll__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testEntrySetRemoveAll(); } public void testEntrySetRemoveAllNullFromEmpty__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testEntrySetRemoveAllNullFromEmpty(); } public void testEntrySetRemoveDifferentValue__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testEntrySetRemoveDifferentValue(); } public void testEntrySetRemoveMissingKey__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testEntrySetRemoveMissingKey(); } public void testEntrySetRemoveNullKeyMissing__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testEntrySetRemoveNullKeyMissing(); } public void testEntrySetRemoveNullKeyPresent__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testEntrySetRemoveNullKeyPresent(); } public void testEntrySetRetainAll__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testEntrySetRetainAll(); } public void testEntrySetRetainAllNullFromEmpty__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testEntrySetRetainAllNullFromEmpty(); } public void testEntrySetSetValue__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testEntrySetSetValue(); } public void testEntrySetSetValueSameValue__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testEntrySetSetValueSameValue(); } public void testEqualsForEmptyMap__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testEqualsForEmptyMap(); } public void testEqualsForEqualMap__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testEqualsForEqualMap(); } public void testEqualsForLargerMap__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testEqualsForLargerMap(); } public void testEqualsForSmallerMap__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testEqualsForSmallerMap(); } public void testGet__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testGet(); } public void testGetForEmptyMap__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testGetForEmptyMap(); } public void testGetNull__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testGetNull(); } public void testHashCode__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testHashCode(); } public void testHashCodeForEmptyMap__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testHashCodeForEmptyMap(); } public void testKeySetClear__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testKeySetClear(); } public void testKeySetRemove__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testKeySetRemove(); } public void testKeySetRemoveAll__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testKeySetRemoveAll(); } public void testKeySetRemoveAllNullFromEmpty__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testKeySetRemoveAllNullFromEmpty(); } public void testKeySetRetainAll__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testKeySetRetainAll(); } public void testKeySetRetainAllNullFromEmpty__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testKeySetRetainAllNullFromEmpty(); } public void testPutAllExistingKey__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testPutAllExistingKey(); } public void testPutAllNewKey__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testPutAllNewKey(); } public void testPutExistingKey__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testPutExistingKey(); } public void testPutNewKey__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testPutNewKey(); } public void testPutNullKey__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testPutNullKey(); } public void testPutNullValue__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testPutNullValue(); } public void testPutNullValueForExistingKey__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testPutNullValueForExistingKey(); } public void testRemove__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testRemove(); } public void testRemoveMissingKey__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testRemoveMissingKey(); } public void testSize__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testSize(); } public void testValues__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testValues(); } public void testValuesClear__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testValuesClear(); } public void testValuesIteratorRemove__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testValuesIteratorRemove(); } public void testValuesRemove__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testValuesRemove(); } public void testValuesRemoveAll__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testValuesRemoveAll(); } public void testValuesRemoveAllNullFromEmpty__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testValuesRemoveAllNullFromEmpty(); } public void testValuesRemoveMissing__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testValuesRemoveMissing(); } public void testValuesRetainAll__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testValuesRetainAll(); } public void testValuesRetainAllNullFromEmpty__InverseMapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.InverseMapTests testCase = new com.google.common.collect.ImmutableBiMapTest.InverseMapTests(); testCase.testValuesRetainAllNullFromEmpty(); } public void testClear__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testClear(); } public void testContainsKey__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testContainsKey(); } public void testContainsValue__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testContainsValue(); } public void testEntrySet__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testEntrySet(); } public void testEntrySetAddAndAddAll__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testEntrySetAddAndAddAll(); } public void testEntrySetClear__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testEntrySetClear(); } public void testEntrySetContainsEntryIncompatibleKey__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testEntrySetContainsEntryIncompatibleKey(); } public void testEntrySetContainsEntryNullKeyMissing__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testEntrySetContainsEntryNullKeyMissing(); } public void testEntrySetContainsEntryNullKeyPresent__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testEntrySetContainsEntryNullKeyPresent(); } public void testEntrySetForEmptyMap__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testEntrySetForEmptyMap(); } public void testEntrySetIteratorRemove__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testEntrySetIteratorRemove(); } public void testEntrySetRemove__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testEntrySetRemove(); } public void testEntrySetRemoveAll__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testEntrySetRemoveAll(); } public void testEntrySetRemoveAllNullFromEmpty__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testEntrySetRemoveAllNullFromEmpty(); } public void testEntrySetRemoveDifferentValue__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testEntrySetRemoveDifferentValue(); } public void testEntrySetRemoveMissingKey__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testEntrySetRemoveMissingKey(); } public void testEntrySetRemoveNullKeyMissing__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testEntrySetRemoveNullKeyMissing(); } public void testEntrySetRemoveNullKeyPresent__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testEntrySetRemoveNullKeyPresent(); } public void testEntrySetRetainAll__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testEntrySetRetainAll(); } public void testEntrySetRetainAllNullFromEmpty__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testEntrySetRetainAllNullFromEmpty(); } public void testEntrySetSetValue__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testEntrySetSetValue(); } public void testEntrySetSetValueSameValue__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testEntrySetSetValueSameValue(); } public void testEqualsForEmptyMap__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testEqualsForEmptyMap(); } public void testEqualsForEqualMap__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testEqualsForEqualMap(); } public void testEqualsForLargerMap__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testEqualsForLargerMap(); } public void testEqualsForSmallerMap__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testEqualsForSmallerMap(); } public void testGet__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testGet(); } public void testGetForEmptyMap__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testGetForEmptyMap(); } public void testGetNull__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testGetNull(); } public void testHashCode__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testHashCode(); } public void testHashCodeForEmptyMap__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testHashCodeForEmptyMap(); } public void testKeySetClear__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testKeySetClear(); } public void testKeySetRemove__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testKeySetRemove(); } public void testKeySetRemoveAll__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testKeySetRemoveAll(); } public void testKeySetRemoveAllNullFromEmpty__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testKeySetRemoveAllNullFromEmpty(); } public void testKeySetRetainAll__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testKeySetRetainAll(); } public void testKeySetRetainAllNullFromEmpty__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testKeySetRetainAllNullFromEmpty(); } public void testPutAllExistingKey__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testPutAllExistingKey(); } public void testPutAllNewKey__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testPutAllNewKey(); } public void testPutExistingKey__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testPutExistingKey(); } public void testPutNewKey__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testPutNewKey(); } public void testPutNullKey__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testPutNullKey(); } public void testPutNullValue__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testPutNullValue(); } public void testPutNullValueForExistingKey__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testPutNullValueForExistingKey(); } public void testRemove__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testRemove(); } public void testRemoveMissingKey__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testRemoveMissingKey(); } public void testSize__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testSize(); } public void testValues__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testValues(); } public void testValuesClear__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testValuesClear(); } public void testValuesIteratorRemove__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testValuesIteratorRemove(); } public void testValuesRemove__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testValuesRemove(); } public void testValuesRemoveAll__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testValuesRemoveAll(); } public void testValuesRemoveAllNullFromEmpty__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testValuesRemoveAllNullFromEmpty(); } public void testValuesRemoveMissing__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testValuesRemoveMissing(); } public void testValuesRetainAll__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testValuesRetainAll(); } public void testValuesRetainAllNullFromEmpty__MapTests() throws Exception { com.google.common.collect.ImmutableBiMapTest.MapTests testCase = new com.google.common.collect.ImmutableBiMapTest.MapTests(); testCase.testValuesRetainAllNullFromEmpty(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class IterablesTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testAddAllToList() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testAddAllToList(); } public void testAll() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testAll(); } public void testAny() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testAny(); } public void testConcatIterable() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testConcatIterable(); } public void testConcatNullPointerException() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testConcatNullPointerException(); } public void testConcatPeformingFiniteCycle() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testConcatPeformingFiniteCycle(); } public void testConcatVarargs() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testConcatVarargs(); } public void testConsumingIterable() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testConsumingIterable(); } public void testConsumingIterable_noIteratorCall() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testConsumingIterable_noIteratorCall(); } public void testConsumingIterable_queue_iterator() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testConsumingIterable_queue_iterator(); } public void testConsumingIterable_queue_removesFromQueue() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testConsumingIterable_queue_removesFromQueue(); } public void testCycle() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testCycle(); } public void testElementsEqual() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testElementsEqual(); } public void testFind() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testFind(); } public void testFind_withDefault() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testFind_withDefault(); } public void testFrequency_list() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testFrequency_list(); } public void testFrequency_multiset() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testFrequency_multiset(); } public void testFrequency_set() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testFrequency_set(); } public void testGetFirst_withDefault_empty() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testGetFirst_withDefault_empty(); } public void testGetFirst_withDefault_empty_null() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testGetFirst_withDefault_empty_null(); } public void testGetFirst_withDefault_multiple() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testGetFirst_withDefault_multiple(); } public void testGetFirst_withDefault_singleton() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testGetFirst_withDefault_singleton(); } public void testGetLast_emptyIterable() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testGetLast_emptyIterable(); } public void testGetLast_emptyList() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testGetLast_emptyList(); } public void testGetLast_emptySortedSet() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testGetLast_emptySortedSet(); } public void testGetLast_iterable() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testGetLast_iterable(); } public void testGetLast_list() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testGetLast_list(); } public void testGetLast_sortedSet() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testGetLast_sortedSet(); } public void testGetLast_withDefault_empty() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testGetLast_withDefault_empty(); } public void testGetLast_withDefault_empty_null() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testGetLast_withDefault_empty_null(); } public void testGetLast_withDefault_multiple() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testGetLast_withDefault_multiple(); } public void testGetLast_withDefault_not_empty_list() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testGetLast_withDefault_not_empty_list(); } public void testGetLast_withDefault_singleton() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testGetLast_withDefault_singleton(); } public void testGetOnlyElement_noDefault_empty() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testGetOnlyElement_noDefault_empty(); } public void testGetOnlyElement_noDefault_multiple() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testGetOnlyElement_noDefault_multiple(); } public void testGetOnlyElement_noDefault_valid() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testGetOnlyElement_noDefault_valid(); } public void testGetOnlyElement_withDefault_empty() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testGetOnlyElement_withDefault_empty(); } public void testGetOnlyElement_withDefault_empty_null() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testGetOnlyElement_withDefault_empty_null(); } public void testGetOnlyElement_withDefault_multiple() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testGetOnlyElement_withDefault_multiple(); } public void testGetOnlyElement_withDefault_singleton() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testGetOnlyElement_withDefault_singleton(); } public void testGet_emptyIterable() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testGet_emptyIterable(); } public void testGet_emptyList() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testGet_emptyList(); } public void testGet_emptySortedSet() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testGet_emptySortedSet(); } public void testGet_iterable() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testGet_iterable(); } public void testGet_list() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testGet_list(); } public void testGet_sortedSet() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testGet_sortedSet(); } public void testGet_withDefault_doesntIterate() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testGet_withDefault_doesntIterate(); } public void testGet_withDefault_iterable() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testGet_withDefault_iterable(); } public void testGet_withDefault_last() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testGet_withDefault_last(); } public void testGet_withDefault_lastPlusOne() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testGet_withDefault_lastPlusOne(); } public void testGet_withDefault_negativePosition() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testGet_withDefault_negativePosition(); } public void testGet_withDefault_simple() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testGet_withDefault_simple(); } public void testIndexOf_empty() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testIndexOf_empty(); } public void testIndexOf_genericPredicate() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testIndexOf_genericPredicate(); } public void testIndexOf_genericPredicate2() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testIndexOf_genericPredicate2(); } public void testIndexOf_oneElement() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testIndexOf_oneElement(); } public void testIndexOf_twoElements() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testIndexOf_twoElements(); } public void testIndexOf_withDuplicates() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testIndexOf_withDuplicates(); } public void testIsEmpty() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testIsEmpty(); } public void testIterableWithToString() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testIterableWithToString(); } public void testIterableWithToStringNull() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testIterableWithToStringNull(); } public void testLimit() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testLimit(); } public void testLimit_illegalArgument() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testLimit_illegalArgument(); } public void testMergeSorted_empty() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testMergeSorted_empty(); } public void testMergeSorted_pyramid() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testMergeSorted_pyramid(); } public void testMergeSorted_single() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testMergeSorted_single(); } public void testMergeSorted_single_empty() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testMergeSorted_single_empty(); } public void testMergeSorted_skipping_pyramid() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testMergeSorted_skipping_pyramid(); } public void testNullFriendlyTransform() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testNullFriendlyTransform(); } public void testPaddedPartitionNonRandomAccessInput() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testPaddedPartitionNonRandomAccessInput(); } public void testPaddedPartitionRandomAccessInput() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testPaddedPartitionRandomAccessInput(); } public void testPaddedPartition_basic() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testPaddedPartition_basic(); } public void testPartition_badSize() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testPartition_badSize(); } public void testPartition_empty() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testPartition_empty(); } public void testPartition_singleton1() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testPartition_singleton1(); } public void testPartition_view() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testPartition_view(); } public void testPoorlyBehavedTransform() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testPoorlyBehavedTransform(); } public void testRemoveAll_collection() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testRemoveAll_collection(); } public void testRemoveAll_iterable() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testRemoveAll_iterable(); } public void testRemoveIf_noRandomAccess() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testRemoveIf_noRandomAccess(); } public void testRemoveIf_randomAccess() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testRemoveIf_randomAccess(); } public void testRemoveIf_transformedList() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testRemoveIf_transformedList(); } public void testRetainAll_collection() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testRetainAll_collection(); } public void testRetainAll_iterable() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testRetainAll_iterable(); } public void testSize0() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testSize0(); } public void testSize1Collection() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testSize1Collection(); } public void testSize2NonCollection() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testSize2NonCollection(); } public void testSize_collection_doesntIterate() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testSize_collection_doesntIterate(); } public void testSkip_allOfImmutableList_modifiable() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testSkip_allOfImmutableList_modifiable(); } public void testSkip_allOfMutableList_modifiable() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testSkip_allOfMutableList_modifiable(); } public void testSkip_illegalArgument() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testSkip_illegalArgument(); } public void testSkip_nonStructurallyModifiedList() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testSkip_nonStructurallyModifiedList(); } public void testSkip_pastEnd() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testSkip_pastEnd(); } public void testSkip_pastEndList() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testSkip_pastEndList(); } public void testSkip_removal() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testSkip_removal(); } public void testSkip_simple() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testSkip_simple(); } public void testSkip_simpleList() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testSkip_simpleList(); } public void testSkip_skipNone() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testSkip_skipNone(); } public void testSkip_skipNoneList() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testSkip_skipNoneList(); } public void testSkip_structurallyModifiedSkipAll() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testSkip_structurallyModifiedSkipAll(); } public void testSkip_structurallyModifiedSkipAllList() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testSkip_structurallyModifiedSkipAllList(); } public void testSkip_structurallyModifiedSkipSome() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testSkip_structurallyModifiedSkipSome(); } public void testSkip_structurallyModifiedSkipSomeList() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testSkip_structurallyModifiedSkipSomeList(); } public void testToString() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testToString(); } public void testTransform() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testTransform(); } public void testTryFind() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testTryFind(); } public void testUnmodifiableIterable() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testUnmodifiableIterable(); } public void testUnmodifiableIterableShortCircuit() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.testUnmodifiableIterableShortCircuit(); } public void test_contains_nonnull_iterable_no() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.test_contains_nonnull_iterable_no(); } public void test_contains_nonnull_iterable_yes() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.test_contains_nonnull_iterable_yes(); } public void test_contains_nonnull_set_no() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.test_contains_nonnull_set_no(); } public void test_contains_nonnull_set_yes() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.test_contains_nonnull_set_yes(); } public void test_contains_null_iterable_no() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.test_contains_null_iterable_no(); } public void test_contains_null_iterable_yes() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.test_contains_null_iterable_yes(); } public void test_contains_null_set_no() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.test_contains_null_set_no(); } public void test_contains_null_set_yes() throws Exception { com.google.common.collect.IterablesTest testCase = new com.google.common.collect.IterablesTest(); testCase.test_contains_null_set_yes(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class EnumMultisetTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testClassCreate() throws Exception { com.google.common.collect.EnumMultisetTest testCase = new com.google.common.collect.EnumMultisetTest(); testCase.testClassCreate(); } public void testCollectionCreate() throws Exception { com.google.common.collect.EnumMultisetTest testCase = new com.google.common.collect.EnumMultisetTest(); testCase.testCollectionCreate(); } public void testCreateEmptyWithClass() throws Exception { com.google.common.collect.EnumMultisetTest testCase = new com.google.common.collect.EnumMultisetTest(); testCase.testCreateEmptyWithClass(); } public void testCreateEmptyWithoutClassFails() throws Exception { com.google.common.collect.EnumMultisetTest testCase = new com.google.common.collect.EnumMultisetTest(); testCase.testCreateEmptyWithoutClassFails(); } public void testEntrySet() throws Exception { com.google.common.collect.EnumMultisetTest testCase = new com.google.common.collect.EnumMultisetTest(); testCase.testEntrySet(); } public void testIllegalCreate() throws Exception { com.google.common.collect.EnumMultisetTest testCase = new com.google.common.collect.EnumMultisetTest(); testCase.testIllegalCreate(); } public void testToString() throws Exception { com.google.common.collect.EnumMultisetTest testCase = new com.google.common.collect.EnumMultisetTest(); testCase.testToString(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class TreeBasedTableTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testCellSetToString_ordered() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testCellSetToString_ordered(); } public void testClear() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testClear(); } public void testColumn() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testColumn(); } public void testColumnComparator() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testColumnComparator(); } public void testColumnKeySet_empty() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testColumnKeySet_empty(); } public void testColumnKeySet_isSorted() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testColumnKeySet_isSorted(); } public void testColumnKeySet_isSortedWithRealComparator() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testColumnKeySet_isSortedWithRealComparator(); } public void testColumnKeySet_oneColumn() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testColumnKeySet_oneColumn(); } public void testColumnKeySet_oneEntry() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testColumnKeySet_oneEntry(); } public void testColumnKeySet_oneRow() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testColumnKeySet_oneRow(); } public void testColumnNull() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testColumnNull(); } public void testColumnSetPartialOverlap() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testColumnSetPartialOverlap(); } public void testContains() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testContains(); } public void testContainsColumn() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testContainsColumn(); } public void testContainsRow() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testContainsRow(); } public void testContainsValue() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testContainsValue(); } public void testCreateCopy() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testCreateCopy(); } public void testCreateExplicitComparators() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testCreateExplicitComparators(); } public void testEquals() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testEquals(); } public void testGet() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testGet(); } public void testHashCode() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testHashCode(); } public void testIsEmpty() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testIsEmpty(); } public void testPut() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testPut(); } public void testPutAllTable() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testPutAllTable(); } public void testPutNull() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testPutNull(); } public void testPutNullReplace() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testPutNullReplace(); } public void testRemove() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testRemove(); } public void testRow() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testRow(); } public void testRowClearAndPut() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testRowClearAndPut(); } public void testRowComparator() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testRowComparator(); } public void testRowEntrySetContains() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testRowEntrySetContains(); } public void testRowEntrySetRemove() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testRowEntrySetRemove(); } public void testRowKeyMapHeadMap() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testRowKeyMapHeadMap(); } public void testRowKeyMapSubMap() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testRowKeyMapSubMap(); } public void testRowKeyMapTailMap() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testRowKeyMapTailMap(); } public void testRowKeySetComparator() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testRowKeySetComparator(); } public void testRowKeySetFirst() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testRowKeySetFirst(); } public void testRowKeySetHeadSet() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testRowKeySetHeadSet(); } public void testRowKeySetLast() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testRowKeySetLast(); } public void testRowKeySetSubSet() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testRowKeySetSubSet(); } public void testRowKeySetTailSet() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testRowKeySetTailSet(); } public void testRowKeySetToString_ordered() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testRowKeySetToString_ordered(); } public void testRowMapComparator() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testRowMapComparator(); } public void testRowMapFirstKey() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testRowMapFirstKey(); } public void testRowMapLastKey() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testRowMapLastKey(); } public void testRowMapValuesAreSorted() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testRowMapValuesAreSorted(); } public void testRowNull() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testRowNull(); } public void testRowSize() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testRowSize(); } public void testSize() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testSize(); } public void testSubRowClearAndPut() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testSubRowClearAndPut(); } public void testToStringSize1() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testToStringSize1(); } public void testToString_ordered() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testToString_ordered(); } public void testValuesToString_ordered() throws Exception { com.google.common.collect.TreeBasedTableTest testCase = new com.google.common.collect.TreeBasedTableTest(); testCase.setUp(); testCase.testValuesToString_ordered(); } public void testClear__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testClear(); } public void testClearSubMapOfRowMap__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testClearSubMapOfRowMap(); } public void testContainsKey__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testContainsKey(); } public void testContainsValue__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testContainsValue(); } public void testEntrySet__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testEntrySet(); } public void testEntrySetAddAndAddAll__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testEntrySetAddAndAddAll(); } public void testEntrySetClear__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testEntrySetClear(); } public void testEntrySetContainsEntryIncompatibleKey__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testEntrySetContainsEntryIncompatibleKey(); } public void testEntrySetContainsEntryNullKeyMissing__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testEntrySetContainsEntryNullKeyMissing(); } public void testEntrySetContainsEntryNullKeyPresent__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testEntrySetContainsEntryNullKeyPresent(); } public void testEntrySetForEmptyMap__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testEntrySetForEmptyMap(); } public void testEntrySetIteratorRemove__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testEntrySetIteratorRemove(); } public void testEntrySetRemove__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testEntrySetRemove(); } public void testEntrySetRemoveAll__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testEntrySetRemoveAll(); } public void testEntrySetRemoveAllNullFromEmpty__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testEntrySetRemoveAllNullFromEmpty(); } public void testEntrySetRemoveDifferentValue__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testEntrySetRemoveDifferentValue(); } public void testEntrySetRemoveMissingKey__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testEntrySetRemoveMissingKey(); } public void testEntrySetRemoveNullKeyMissing__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testEntrySetRemoveNullKeyMissing(); } public void testEntrySetRemoveNullKeyPresent__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testEntrySetRemoveNullKeyPresent(); } public void testEntrySetRetainAll__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testEntrySetRetainAll(); } public void testEntrySetRetainAllNullFromEmpty__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testEntrySetRetainAllNullFromEmpty(); } public void testEntrySetSetValue__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testEntrySetSetValue(); } public void testEntrySetSetValueSameValue__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testEntrySetSetValueSameValue(); } public void testEqualsForEmptyMap__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testEqualsForEmptyMap(); } public void testEqualsForEqualMap__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testEqualsForEqualMap(); } public void testEqualsForLargerMap__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testEqualsForLargerMap(); } public void testEqualsForSmallerMap__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testEqualsForSmallerMap(); } public void testGet__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testGet(); } public void testGetForEmptyMap__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testGetForEmptyMap(); } public void testGetNull__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testGetNull(); } public void testHashCode__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testHashCode(); } public void testHashCodeForEmptyMap__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testHashCodeForEmptyMap(); } public void testKeySetClear__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testKeySetClear(); } public void testKeySetRemove__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testKeySetRemove(); } public void testKeySetRemoveAll__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testKeySetRemoveAll(); } public void testKeySetRemoveAllNullFromEmpty__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testKeySetRemoveAllNullFromEmpty(); } public void testKeySetRetainAll__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testKeySetRetainAll(); } public void testKeySetRetainAllNullFromEmpty__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testKeySetRetainAllNullFromEmpty(); } public void testPutAllExistingKey__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testPutAllExistingKey(); } public void testPutAllNewKey__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testPutAllNewKey(); } public void testPutExistingKey__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testPutExistingKey(); } public void testPutNewKey__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testPutNewKey(); } public void testPutNullKey__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testPutNullKey(); } public void testPutNullValue__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testPutNullValue(); } public void testPutNullValueForExistingKey__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testPutNullValueForExistingKey(); } public void testRemove__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testRemove(); } public void testRemoveMissingKey__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testRemoveMissingKey(); } public void testSize__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testSize(); } public void testTailMapClearThrough__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testTailMapClearThrough(); } public void testTailMapRemoveThrough__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testTailMapRemoveThrough(); } public void testTailMapWriteThrough__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testTailMapWriteThrough(); } public void testValues__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testValues(); } public void testValuesClear__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testValuesClear(); } public void testValuesIteratorRemove__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testValuesIteratorRemove(); } public void testValuesRemove__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testValuesRemove(); } public void testValuesRemoveAll__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testValuesRemoveAll(); } public void testValuesRemoveAllNullFromEmpty__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testValuesRemoveAllNullFromEmpty(); } public void testValuesRemoveMissing__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testValuesRemoveMissing(); } public void testValuesRetainAll__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testValuesRetainAll(); } public void testValuesRetainAllNullFromEmpty__TreeRowTest() throws Exception { com.google.common.collect.TreeBasedTableTest.TreeRowTest testCase = new com.google.common.collect.TreeBasedTableTest.TreeRowTest(); testCase.testValuesRetainAllNullFromEmpty(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class SimpleAbstractMultisetTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testFastAddAllMultiset() throws Exception { com.google.common.collect.SimpleAbstractMultisetTest testCase = new com.google.common.collect.SimpleAbstractMultisetTest(); testCase.testFastAddAllMultiset(); } public void testRemoveUnsupported() throws Exception { com.google.common.collect.SimpleAbstractMultisetTest testCase = new com.google.common.collect.SimpleAbstractMultisetTest(); testCase.testRemoveUnsupported(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class ImmutableTableTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testBuilder() throws Exception { com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest(); testCase.setUp(); testCase.testBuilder(); } public void testBuilder_noDuplicates() throws Exception { com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest(); testCase.setUp(); testCase.testBuilder_noDuplicates(); } public void testBuilder_noNulls() throws Exception { com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest(); testCase.setUp(); testCase.testBuilder_noNulls(); } public void testBuilder_orderColumnsBy_dense() throws Exception { com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest(); testCase.setUp(); testCase.testBuilder_orderColumnsBy_dense(); } public void testBuilder_orderColumnsBy_sparse() throws Exception { com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest(); testCase.setUp(); testCase.testBuilder_orderColumnsBy_sparse(); } public void testBuilder_orderRowsAndColumnsBy_dense() throws Exception { com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest(); testCase.setUp(); testCase.testBuilder_orderRowsAndColumnsBy_dense(); } public void testBuilder_orderRowsAndColumnsBy_putAll() throws Exception { com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest(); testCase.setUp(); testCase.testBuilder_orderRowsAndColumnsBy_putAll(); } public void testBuilder_orderRowsAndColumnsBy_sparse() throws Exception { com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest(); testCase.setUp(); testCase.testBuilder_orderRowsAndColumnsBy_sparse(); } public void testBuilder_orderRowsBy_dense() throws Exception { com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest(); testCase.setUp(); testCase.testBuilder_orderRowsBy_dense(); } public void testBuilder_orderRowsBy_sparse() throws Exception { com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest(); testCase.setUp(); testCase.testBuilder_orderRowsBy_sparse(); } public void testBuilder_withImmutableCell() throws Exception { com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest(); testCase.setUp(); testCase.testBuilder_withImmutableCell(); } public void testBuilder_withImmutableCellAndNullContents() throws Exception { com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest(); testCase.setUp(); testCase.testBuilder_withImmutableCellAndNullContents(); } public void testBuilder_withMutableCell() throws Exception { com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest(); testCase.setUp(); testCase.testBuilder_withMutableCell(); } public void testColumn() throws Exception { com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest(); testCase.setUp(); testCase.testColumn(); } public void testColumnNull() throws Exception { com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest(); testCase.setUp(); testCase.testColumnNull(); } public void testColumnSetPartialOverlap() throws Exception { com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest(); testCase.setUp(); testCase.testColumnSetPartialOverlap(); } public void testContains() throws Exception { com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest(); testCase.setUp(); testCase.testContains(); } public void testContainsColumn() throws Exception { com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest(); testCase.setUp(); testCase.testContainsColumn(); } public void testContainsRow() throws Exception { com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest(); testCase.setUp(); testCase.testContainsRow(); } public void testContainsValue() throws Exception { com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest(); testCase.setUp(); testCase.testContainsValue(); } public void testCopyOf() throws Exception { com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest(); testCase.setUp(); testCase.testCopyOf(); } public void testCopyOfDense() throws Exception { com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest(); testCase.setUp(); testCase.testCopyOfDense(); } public void testCopyOfSparse() throws Exception { com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest(); testCase.setUp(); testCase.testCopyOfSparse(); } public void testEquals() throws Exception { com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest(); testCase.setUp(); testCase.testEquals(); } public void testGet() throws Exception { com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest(); testCase.setUp(); testCase.testGet(); } public void testHashCode() throws Exception { com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest(); testCase.setUp(); testCase.testHashCode(); } public void testIsEmpty() throws Exception { com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest(); testCase.setUp(); testCase.testIsEmpty(); } public void testRow() throws Exception { com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest(); testCase.setUp(); testCase.testRow(); } public void testRowNull() throws Exception { com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest(); testCase.setUp(); testCase.testRowNull(); } public void testSize() throws Exception { com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest(); testCase.setUp(); testCase.testSize(); } public void testToStringSize1() throws Exception { com.google.common.collect.ImmutableTableTest testCase = new com.google.common.collect.ImmutableTableTest(); testCase.setUp(); testCase.testToStringSize1(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class ImmutableMultisetTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testAsList() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testAsList(); } public void testBuilderAdd() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testBuilderAdd(); } public void testBuilderAddAll() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testBuilderAddAll(); } public void testBuilderAddAllHandlesNullsCorrectly() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testBuilderAddAllHandlesNullsCorrectly(); } public void testBuilderAddAllIterator() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testBuilderAddAllIterator(); } public void testBuilderAddAllMultiset() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testBuilderAddAllMultiset(); } public void testBuilderAddCopies() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testBuilderAddCopies(); } public void testBuilderAddCopiesHandlesNullsCorrectly() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testBuilderAddCopiesHandlesNullsCorrectly(); } public void testBuilderAddCopiesIllegal() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testBuilderAddCopiesIllegal(); } public void testBuilderAddHandlesNullsCorrectly() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testBuilderAddHandlesNullsCorrectly(); } public void testBuilderSetCount() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testBuilderSetCount(); } public void testBuilderSetCountHandlesNullsCorrectly() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testBuilderSetCountHandlesNullsCorrectly(); } public void testBuilderSetCountIllegal() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testBuilderSetCountIllegal(); } public void testCopyOf_collectionContainingNull() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testCopyOf_collectionContainingNull(); } public void testCopyOf_collection_empty() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testCopyOf_collection_empty(); } public void testCopyOf_collection_general() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testCopyOf_collection_general(); } public void testCopyOf_collection_oneElement() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testCopyOf_collection_oneElement(); } public void testCopyOf_iteratorContainingNull() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testCopyOf_iteratorContainingNull(); } public void testCopyOf_iterator_empty() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testCopyOf_iterator_empty(); } public void testCopyOf_iterator_general() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testCopyOf_iterator_general(); } public void testCopyOf_iterator_oneElement() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testCopyOf_iterator_oneElement(); } public void testCopyOf_multisetContainingNull() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testCopyOf_multisetContainingNull(); } public void testCopyOf_multiset_empty() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testCopyOf_multiset_empty(); } public void testCopyOf_multiset_general() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testCopyOf_multiset_general(); } public void testCopyOf_multiset_oneElement() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testCopyOf_multiset_oneElement(); } public void testCopyOf_plainIterable() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testCopyOf_plainIterable(); } public void testCopyOf_shortcut_empty() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testCopyOf_shortcut_empty(); } public void testCopyOf_shortcut_immutableMultiset() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testCopyOf_shortcut_immutableMultiset(); } public void testCopyOf_shortcut_singleton() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testCopyOf_shortcut_singleton(); } public void testCreation_arrayContainingOnlyNull() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testCreation_arrayContainingOnlyNull(); } public void testCreation_arrayOfArray() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testCreation_arrayOfArray(); } public void testCreation_arrayOfOneElement() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testCreation_arrayOfOneElement(); } public void testCreation_emptyArray() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testCreation_emptyArray(); } public void testCreation_fiveElements() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testCreation_fiveElements(); } public void testCreation_fourElements() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testCreation_fourElements(); } public void testCreation_noArgs() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testCreation_noArgs(); } public void testCreation_oneElement() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testCreation_oneElement(); } public void testCreation_sevenElements() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testCreation_sevenElements(); } public void testCreation_sixElements() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testCreation_sixElements(); } public void testCreation_threeElements() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testCreation_threeElements(); } public void testCreation_twoElements() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testCreation_twoElements(); } public void testEquals() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testEquals(); } public void testEquals_immutableMultiset() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testEquals_immutableMultiset(); } public void testIterationOrder() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testIterationOrder(); } public void testMultisetWrites() throws Exception { com.google.common.collect.ImmutableMultisetTest testCase = new com.google.common.collect.ImmutableMultisetTest(); testCase.testMultisetWrites(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class MapsSortedTransformValuesTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testClear() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testClear(); } public void testContainsKey() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testContainsKey(); } public void testContainsValue() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testContainsValue(); } public void testEntrySet() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testEntrySet(); } public void testEntrySetAddAndAddAll() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testEntrySetAddAndAddAll(); } public void testEntrySetClear() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testEntrySetClear(); } public void testEntrySetContainsEntryIncompatibleKey() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testEntrySetContainsEntryIncompatibleKey(); } public void testEntrySetContainsEntryNullKeyMissing() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testEntrySetContainsEntryNullKeyMissing(); } public void testEntrySetContainsEntryNullKeyPresent() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testEntrySetContainsEntryNullKeyPresent(); } public void testEntrySetForEmptyMap() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testEntrySetForEmptyMap(); } public void testEntrySetIteratorRemove() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testEntrySetIteratorRemove(); } public void testEntrySetRemove() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testEntrySetRemove(); } public void testEntrySetRemoveAll() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testEntrySetRemoveAll(); } public void testEntrySetRemoveAllNullFromEmpty() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testEntrySetRemoveAllNullFromEmpty(); } public void testEntrySetRemoveDifferentValue() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testEntrySetRemoveDifferentValue(); } public void testEntrySetRemoveMissingKey() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testEntrySetRemoveMissingKey(); } public void testEntrySetRemoveNullKeyMissing() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testEntrySetRemoveNullKeyMissing(); } public void testEntrySetRemoveNullKeyPresent() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testEntrySetRemoveNullKeyPresent(); } public void testEntrySetRetainAll() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testEntrySetRetainAll(); } public void testEntrySetRetainAllNullFromEmpty() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testEntrySetRetainAllNullFromEmpty(); } public void testEntrySetSetValue() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testEntrySetSetValue(); } public void testEntrySetSetValueSameValue() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testEntrySetSetValueSameValue(); } public void testEqualsForEmptyMap() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testEqualsForEmptyMap(); } public void testEqualsForEqualMap() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testEqualsForEqualMap(); } public void testEqualsForLargerMap() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testEqualsForLargerMap(); } public void testEqualsForSmallerMap() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testEqualsForSmallerMap(); } public void testGet() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testGet(); } public void testGetForEmptyMap() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testGetForEmptyMap(); } public void testGetNull() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testGetNull(); } public void testHashCode() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testHashCode(); } public void testHashCodeForEmptyMap() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testHashCodeForEmptyMap(); } public void testKeySetClear() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testKeySetClear(); } public void testKeySetRemove() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testKeySetRemove(); } public void testKeySetRemoveAll() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testKeySetRemoveAll(); } public void testKeySetRemoveAllNullFromEmpty() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testKeySetRemoveAllNullFromEmpty(); } public void testKeySetRetainAll() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testKeySetRetainAll(); } public void testKeySetRetainAllNullFromEmpty() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testKeySetRetainAllNullFromEmpty(); } public void testPutAllExistingKey() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testPutAllExistingKey(); } public void testPutAllNewKey() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testPutAllNewKey(); } public void testPutExistingKey() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testPutExistingKey(); } public void testPutNewKey() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testPutNewKey(); } public void testPutNullKey() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testPutNullKey(); } public void testPutNullValue() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testPutNullValue(); } public void testPutNullValueForExistingKey() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testPutNullValueForExistingKey(); } public void testRemove() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testRemove(); } public void testRemoveMissingKey() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testRemoveMissingKey(); } public void testSize() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testSize(); } public void testTransformChangesAreReflectedInUnderlyingMap() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testTransformChangesAreReflectedInUnderlyingMap(); } public void testTransformEmptyMapEquality() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testTransformEmptyMapEquality(); } public void testTransformEntrySetContains() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testTransformEntrySetContains(); } public void testTransformEqualityOfMapsWithNullValues() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testTransformEqualityOfMapsWithNullValues(); } public void testTransformEquals() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testTransformEquals(); } public void testTransformIdentityFunctionEquality() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testTransformIdentityFunctionEquality(); } public void testTransformPutEntryIsUnsupported() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testTransformPutEntryIsUnsupported(); } public void testTransformReflectsUnderlyingMap() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testTransformReflectsUnderlyingMap(); } public void testTransformRemoveEntry() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testTransformRemoveEntry(); } public void testTransformSingletonMapEquality() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testTransformSingletonMapEquality(); } public void testTransformValuesSecretlySortedMap() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testTransformValuesSecretlySortedMap(); } public void testValues() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testValues(); } public void testValuesClear() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testValuesClear(); } public void testValuesIteratorRemove() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testValuesIteratorRemove(); } public void testValuesRemove() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testValuesRemove(); } public void testValuesRemoveAll() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testValuesRemoveAll(); } public void testValuesRemoveAllNullFromEmpty() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testValuesRemoveAllNullFromEmpty(); } public void testValuesRemoveMissing() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testValuesRemoveMissing(); } public void testValuesRetainAll() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testValuesRetainAll(); } public void testValuesRetainAllNullFromEmpty() throws Exception { com.google.common.collect.MapsSortedTransformValuesTest testCase = new com.google.common.collect.MapsSortedTransformValuesTest(); testCase.testValuesRetainAllNullFromEmpty(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class ImmutableSortedSetTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testAsList() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testAsList(); } public void testAsListInconsistentComprator() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testAsListInconsistentComprator(); } public void testBuilderAddAll() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testBuilderAddAll(); } public void testBuilderAddAllHandlesNullsCorrectly() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testBuilderAddAllHandlesNullsCorrectly(); } public void testBuilderAddHandlesNullsCorrectly() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testBuilderAddHandlesNullsCorrectly(); } public void testBuilderGenerics_SelfComparable() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testBuilderGenerics_SelfComparable(); } public void testBuilderGenerics_SuperComparable() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testBuilderGenerics_SuperComparable(); } public void testBuilderMethod() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testBuilderMethod(); } public void testBuilderWithDuplicateElements() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testBuilderWithDuplicateElements(); } public void testBuilderWithNonDuplicateElements() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testBuilderWithNonDuplicateElements(); } public void testComplexBuilder() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testComplexBuilder(); } public void testContainsAll_differentComparator() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testContainsAll_differentComparator(); } public void testContainsAll_notSortedSet() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testContainsAll_notSortedSet(); } public void testContainsAll_sameComparator() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testContainsAll_sameComparator(); } public void testContainsAll_sameComparator_StringVsInt() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testContainsAll_sameComparator_StringVsInt(); } public void testContainsAll_sameType() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testContainsAll_sameType(); } public void testCopyOfExplicit_comparator() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOfExplicit_comparator(); } public void testCopyOfExplicit_iterator_comparator() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOfExplicit_iterator_comparator(); } public void testCopyOfExplicit_iterator_ordering() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOfExplicit_iterator_ordering(); } public void testCopyOfExplicit_iterator_ordering_dupes() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOfExplicit_iterator_ordering_dupes(); } public void testCopyOfExplicit_ordering() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOfExplicit_ordering(); } public void testCopyOfExplicit_ordering_dupes() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOfExplicit_ordering_dupes(); } public void testCopyOfSorted_explicit_ordering() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOfSorted_explicit_ordering(); } public void testCopyOfSorted_natural_comparator() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOfSorted_natural_comparator(); } public void testCopyOfSorted_natural_ordering() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOfSorted_natural_ordering(); } public void testCopyOf_arrayContainingOnlyNull() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOf_arrayContainingOnlyNull(); } public void testCopyOf_arrayOfOneElement() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOf_arrayOfOneElement(); } public void testCopyOf_collectionContainingNull() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOf_collectionContainingNull(); } public void testCopyOf_collection_empty() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOf_collection_empty(); } public void testCopyOf_collection_general() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOf_collection_general(); } public void testCopyOf_collection_oneElement() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOf_collection_oneElement(); } public void testCopyOf_collection_oneElementRepeated() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOf_collection_oneElementRepeated(); } public void testCopyOf_comparator() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOf_comparator(); } public void testCopyOf_emptyArray() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOf_emptyArray(); } public void testCopyOf_headSet() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOf_headSet(); } public void testCopyOf_iteratorContainingNull() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOf_iteratorContainingNull(); } public void testCopyOf_iterator_comparator() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOf_iterator_comparator(); } public void testCopyOf_iterator_empty() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOf_iterator_empty(); } public void testCopyOf_iterator_general() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOf_iterator_general(); } public void testCopyOf_iterator_oneElement() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOf_iterator_oneElement(); } public void testCopyOf_iterator_oneElementRepeated() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOf_iterator_oneElementRepeated(); } public void testCopyOf_iterator_ordering() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOf_iterator_ordering(); } public void testCopyOf_iterator_ordering_dupes() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOf_iterator_ordering_dupes(); } public void testCopyOf_nullArray() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOf_nullArray(); } public void testCopyOf_ordering() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOf_ordering(); } public void testCopyOf_ordering_dupes() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOf_ordering_dupes(); } public void testCopyOf_plainIterable() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOf_plainIterable(); } public void testCopyOf_plainIterable_iteratesOnce() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOf_plainIterable_iteratesOnce(); } public void testCopyOf_shortcut_empty() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOf_shortcut_empty(); } public void testCopyOf_shortcut_sameType() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOf_shortcut_sameType(); } public void testCopyOf_shortcut_singleton() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOf_shortcut_singleton(); } public void testCopyOf_sortedSetIterable() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOf_sortedSetIterable(); } public void testCopyOf_sortedSet_comparator() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOf_sortedSet_comparator(); } public void testCopyOf_sortedSet_ordering() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOf_sortedSet_ordering(); } public void testCopyOf_subSet() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOf_subSet(); } public void testCopyOf_tailSet() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCopyOf_tailSet(); } public void testCreation_eightElements() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCreation_eightElements(); } public void testCreation_fiveElements() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCreation_fiveElements(); } public void testCreation_fourElements() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCreation_fourElements(); } public void testCreation_noArgs() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCreation_noArgs(); } public void testCreation_oneElement() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCreation_oneElement(); } public void testCreation_sevenElements() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCreation_sevenElements(); } public void testCreation_sixElements() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCreation_sixElements(); } public void testCreation_threeElements() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCreation_threeElements(); } public void testCreation_twoElements() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testCreation_twoElements(); } public void testEmpty_comparator() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testEmpty_comparator(); } public void testEmpty_first() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testEmpty_first(); } public void testEmpty_headSet() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testEmpty_headSet(); } public void testEmpty_last() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testEmpty_last(); } public void testEmpty_subSet() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testEmpty_subSet(); } public void testEmpty_tailSet() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testEmpty_tailSet(); } public void testEquals_bothDefaultOrdering() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testEquals_bothDefaultOrdering(); } public void testEquals_bothDefaultOrdering_StringVsInt() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testEquals_bothDefaultOrdering_StringVsInt(); } public void testEquals_bothExplicitOrdering() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testEquals_bothExplicitOrdering(); } public void testEquals_bothExplicitOrdering_StringVsInt() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testEquals_bothExplicitOrdering_StringVsInt(); } public void testEquals_sameType() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testEquals_sameType(); } public void testExplicit_comparator() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testExplicit_comparator(); } public void testExplicit_contains() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testExplicit_contains(); } public void testExplicit_containsMismatchedTypes() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testExplicit_containsMismatchedTypes(); } public void testExplicit_first() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testExplicit_first(); } public void testExplicit_headSet() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testExplicit_headSet(); } public void testExplicit_last() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testExplicit_last(); } public void testExplicit_ordering() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testExplicit_ordering(); } public void testExplicit_ordering_dupes() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testExplicit_ordering_dupes(); } public void testExplicit_subSet() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testExplicit_subSet(); } public void testExplicit_tailSet() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testExplicit_tailSet(); } public void testHeadSetExclusive() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testHeadSetExclusive(); } public void testHeadSetInclusive() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testHeadSetInclusive(); } public void testLegacyComparable_builder_natural() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testLegacyComparable_builder_natural(); } public void testLegacyComparable_builder_reverse() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testLegacyComparable_builder_reverse(); } public void testLegacyComparable_copyOf_collection() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testLegacyComparable_copyOf_collection(); } public void testLegacyComparable_copyOf_iterator() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testLegacyComparable_copyOf_iterator(); } public void testLegacyComparable_of() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testLegacyComparable_of(); } public void testOf_comparator() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testOf_comparator(); } public void testOf_first() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testOf_first(); } public void testOf_gwtArraycopyBug() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testOf_gwtArraycopyBug(); } public void testOf_headSet() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testOf_headSet(); } public void testOf_last() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testOf_last(); } public void testOf_ordering() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testOf_ordering(); } public void testOf_ordering_dupes() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testOf_ordering_dupes(); } public void testOf_subSet() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testOf_subSet(); } public void testOf_tailSet() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testOf_tailSet(); } public void testReuseBuilderWithDuplicateElements() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testReuseBuilderWithDuplicateElements(); } public void testReuseBuilderWithNonDuplicateElements() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testReuseBuilderWithNonDuplicateElements(); } public void testReverseOrder() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testReverseOrder(); } public void testSingle_comparator() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testSingle_comparator(); } public void testSingle_first() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testSingle_first(); } public void testSingle_headSet() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testSingle_headSet(); } public void testSingle_last() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testSingle_last(); } public void testSingle_subSet() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testSingle_subSet(); } public void testSingle_tailSet() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testSingle_tailSet(); } public void testSubSetExclusiveExclusive() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testSubSetExclusiveExclusive(); } public void testSubSetExclusiveInclusive() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testSubSetExclusiveInclusive(); } public void testSubSetInclusiveExclusive() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testSubSetInclusiveExclusive(); } public void testSubSetInclusiveInclusive() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testSubSetInclusiveInclusive(); } public void testSubsetAsList() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testSubsetAsList(); } public void testSupertypeComparator() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testSupertypeComparator(); } public void testSupertypeComparatorSubtypeElements() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testSupertypeComparatorSubtypeElements(); } public void testTailSetExclusive() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testTailSetExclusive(); } public void testTailSetInclusive() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testTailSetInclusive(); } public void testToString() throws Exception { com.google.common.collect.ImmutableSortedSetTest testCase = new com.google.common.collect.ImmutableSortedSetTest(); testCase.testToString(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class HashMultisetTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testCreate() throws Exception { com.google.common.collect.HashMultisetTest testCase = new com.google.common.collect.HashMultisetTest(); testCase.testCreate(); } public void testCreateFromIterable() throws Exception { com.google.common.collect.HashMultisetTest testCase = new com.google.common.collect.HashMultisetTest(); testCase.testCreateFromIterable(); } public void testCreateWithSize() throws Exception { com.google.common.collect.HashMultisetTest testCase = new com.google.common.collect.HashMultisetTest(); testCase.testCreateWithSize(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class MapsTransformValuesUnmodifiableIteratorTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testClear() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testClear(); } public void testContainsKey() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testContainsKey(); } public void testContainsValue() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testContainsValue(); } public void testEntrySet() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testEntrySet(); } public void testEntrySetAddAndAddAll() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testEntrySetAddAndAddAll(); } public void testEntrySetClear() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testEntrySetClear(); } public void testEntrySetContainsEntryIncompatibleKey() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testEntrySetContainsEntryIncompatibleKey(); } public void testEntrySetContainsEntryNullKeyMissing() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testEntrySetContainsEntryNullKeyMissing(); } public void testEntrySetContainsEntryNullKeyPresent() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testEntrySetContainsEntryNullKeyPresent(); } public void testEntrySetForEmptyMap() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testEntrySetForEmptyMap(); } public void testEntrySetIteratorRemove() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testEntrySetIteratorRemove(); } public void testEntrySetRemove() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testEntrySetRemove(); } public void testEntrySetRemoveAll() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testEntrySetRemoveAll(); } public void testEntrySetRemoveAllNullFromEmpty() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testEntrySetRemoveAllNullFromEmpty(); } public void testEntrySetRemoveDifferentValue() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testEntrySetRemoveDifferentValue(); } public void testEntrySetRemoveMissingKey() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testEntrySetRemoveMissingKey(); } public void testEntrySetRemoveNullKeyMissing() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testEntrySetRemoveNullKeyMissing(); } public void testEntrySetRemoveNullKeyPresent() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testEntrySetRemoveNullKeyPresent(); } public void testEntrySetRetainAll() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testEntrySetRetainAll(); } public void testEntrySetRetainAllNullFromEmpty() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testEntrySetRetainAllNullFromEmpty(); } public void testEntrySetSetValue() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testEntrySetSetValue(); } public void testEntrySetSetValueSameValue() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testEntrySetSetValueSameValue(); } public void testEqualsForEmptyMap() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testEqualsForEmptyMap(); } public void testEqualsForEqualMap() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testEqualsForEqualMap(); } public void testEqualsForLargerMap() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testEqualsForLargerMap(); } public void testEqualsForSmallerMap() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testEqualsForSmallerMap(); } public void testGet() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testGet(); } public void testGetForEmptyMap() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testGetForEmptyMap(); } public void testGetNull() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testGetNull(); } public void testHashCode() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testHashCode(); } public void testHashCodeForEmptyMap() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testHashCodeForEmptyMap(); } public void testKeySetClear() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testKeySetClear(); } public void testKeySetRemove() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testKeySetRemove(); } public void testKeySetRemoveAll() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testKeySetRemoveAll(); } public void testKeySetRemoveAllNullFromEmpty() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testKeySetRemoveAllNullFromEmpty(); } public void testKeySetRetainAll() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testKeySetRetainAll(); } public void testKeySetRetainAllNullFromEmpty() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testKeySetRetainAllNullFromEmpty(); } public void testPutAllExistingKey() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testPutAllExistingKey(); } public void testPutAllNewKey() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testPutAllNewKey(); } public void testPutExistingKey() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testPutExistingKey(); } public void testPutNewKey() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testPutNewKey(); } public void testPutNullKey() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testPutNullKey(); } public void testPutNullValue() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testPutNullValue(); } public void testPutNullValueForExistingKey() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testPutNullValueForExistingKey(); } public void testRemove() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testRemove(); } public void testRemoveMissingKey() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testRemoveMissingKey(); } public void testSize() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testSize(); } public void testTransformChangesAreReflectedInUnderlyingMap() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testTransformChangesAreReflectedInUnderlyingMap(); } public void testTransformEmptyMapEquality() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testTransformEmptyMapEquality(); } public void testTransformEntrySetContains() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testTransformEntrySetContains(); } public void testTransformEqualityOfMapsWithNullValues() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testTransformEqualityOfMapsWithNullValues(); } public void testTransformEquals() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testTransformEquals(); } public void testTransformIdentityFunctionEquality() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testTransformIdentityFunctionEquality(); } public void testTransformPutEntryIsUnsupported() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testTransformPutEntryIsUnsupported(); } public void testTransformReflectsUnderlyingMap() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testTransformReflectsUnderlyingMap(); } public void testTransformRemoveEntry() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testTransformRemoveEntry(); } public void testTransformSingletonMapEquality() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testTransformSingletonMapEquality(); } public void testValues() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testValues(); } public void testValuesClear() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testValuesClear(); } public void testValuesIteratorRemove() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testValuesIteratorRemove(); } public void testValuesRemove() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testValuesRemove(); } public void testValuesRemoveAll() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testValuesRemoveAll(); } public void testValuesRemoveAllNullFromEmpty() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testValuesRemoveAllNullFromEmpty(); } public void testValuesRemoveMissing() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testValuesRemoveMissing(); } public void testValuesRetainAll() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testValuesRetainAll(); } public void testValuesRetainAllNullFromEmpty() throws Exception { com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest testCase = new com.google.common.collect.MapsTransformValuesUnmodifiableIteratorTest(); testCase.testValuesRetainAllNullFromEmpty(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class ImmutableSortedMapTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testBuilderGenerics_SelfComparable() throws Exception { com.google.common.collect.ImmutableSortedMapTest testCase = new com.google.common.collect.ImmutableSortedMapTest(); testCase.testBuilderGenerics_SelfComparable(); } public void testBuilderGenerics_SuperComparable() throws Exception { com.google.common.collect.ImmutableSortedMapTest testCase = new com.google.common.collect.ImmutableSortedMapTest(); testCase.testBuilderGenerics_SuperComparable(); } public void testHeadMapExclusive() throws Exception { com.google.common.collect.ImmutableSortedMapTest testCase = new com.google.common.collect.ImmutableSortedMapTest(); testCase.testHeadMapExclusive(); } public void testHeadMapInclusive() throws Exception { com.google.common.collect.ImmutableSortedMapTest testCase = new com.google.common.collect.ImmutableSortedMapTest(); testCase.testHeadMapInclusive(); } public void testMutableValues() throws Exception { com.google.common.collect.ImmutableSortedMapTest testCase = new com.google.common.collect.ImmutableSortedMapTest(); testCase.testMutableValues(); } public void testNullGet() throws Exception { com.google.common.collect.ImmutableSortedMapTest testCase = new com.google.common.collect.ImmutableSortedMapTest(); testCase.testNullGet(); } public void testSubMapExclusiveExclusive() throws Exception { com.google.common.collect.ImmutableSortedMapTest testCase = new com.google.common.collect.ImmutableSortedMapTest(); testCase.testSubMapExclusiveExclusive(); } public void testSubMapExclusiveInclusive() throws Exception { com.google.common.collect.ImmutableSortedMapTest testCase = new com.google.common.collect.ImmutableSortedMapTest(); testCase.testSubMapExclusiveInclusive(); } public void testSubMapInclusiveExclusive() throws Exception { com.google.common.collect.ImmutableSortedMapTest testCase = new com.google.common.collect.ImmutableSortedMapTest(); testCase.testSubMapInclusiveExclusive(); } public void testSubMapInclusiveInclusive() throws Exception { com.google.common.collect.ImmutableSortedMapTest testCase = new com.google.common.collect.ImmutableSortedMapTest(); testCase.testSubMapInclusiveInclusive(); } public void testTailMapExclusive() throws Exception { com.google.common.collect.ImmutableSortedMapTest testCase = new com.google.common.collect.ImmutableSortedMapTest(); testCase.testTailMapExclusive(); } public void testTailMapInclusive() throws Exception { com.google.common.collect.ImmutableSortedMapTest testCase = new com.google.common.collect.ImmutableSortedMapTest(); testCase.testTailMapInclusive(); } public void testBuilder__CreationTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.CreationTests testCase = new com.google.common.collect.ImmutableSortedMapTest.CreationTests(); testCase.testBuilder(); } public void testBuilderComparator__CreationTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.CreationTests testCase = new com.google.common.collect.ImmutableSortedMapTest.CreationTests(); testCase.testBuilderComparator(); } public void testBuilderPutAll__CreationTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.CreationTests testCase = new com.google.common.collect.ImmutableSortedMapTest.CreationTests(); testCase.testBuilderPutAll(); } public void testBuilderPutAllWithEmptyMap__CreationTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.CreationTests testCase = new com.google.common.collect.ImmutableSortedMapTest.CreationTests(); testCase.testBuilderPutAllWithEmptyMap(); } public void testBuilderPutNullKey__CreationTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.CreationTests testCase = new com.google.common.collect.ImmutableSortedMapTest.CreationTests(); testCase.testBuilderPutNullKey(); } public void testBuilderPutNullKeyViaPutAll__CreationTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.CreationTests testCase = new com.google.common.collect.ImmutableSortedMapTest.CreationTests(); testCase.testBuilderPutNullKeyViaPutAll(); } public void testBuilderPutNullValue__CreationTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.CreationTests testCase = new com.google.common.collect.ImmutableSortedMapTest.CreationTests(); testCase.testBuilderPutNullValue(); } public void testBuilderPutNullValueViaPutAll__CreationTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.CreationTests testCase = new com.google.common.collect.ImmutableSortedMapTest.CreationTests(); testCase.testBuilderPutNullValueViaPutAll(); } public void testBuilderReuse__CreationTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.CreationTests testCase = new com.google.common.collect.ImmutableSortedMapTest.CreationTests(); testCase.testBuilderReuse(); } public void testBuilderReverseOrder__CreationTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.CreationTests testCase = new com.google.common.collect.ImmutableSortedMapTest.CreationTests(); testCase.testBuilderReverseOrder(); } public void testBuilder_withImmutableEntry__CreationTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.CreationTests testCase = new com.google.common.collect.ImmutableSortedMapTest.CreationTests(); testCase.testBuilder_withImmutableEntry(); } public void testBuilder_withImmutableEntryAndNullContents__CreationTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.CreationTests testCase = new com.google.common.collect.ImmutableSortedMapTest.CreationTests(); testCase.testBuilder_withImmutableEntryAndNullContents(); } public void testBuilder_withMutableEntry__CreationTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.CreationTests testCase = new com.google.common.collect.ImmutableSortedMapTest.CreationTests(); testCase.testBuilder_withMutableEntry(); } public void testCopyOf__CreationTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.CreationTests testCase = new com.google.common.collect.ImmutableSortedMapTest.CreationTests(); testCase.testCopyOf(); } public void testCopyOfDuplicateKey__CreationTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.CreationTests testCase = new com.google.common.collect.ImmutableSortedMapTest.CreationTests(); testCase.testCopyOfDuplicateKey(); } public void testCopyOfEmptyMap__CreationTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.CreationTests testCase = new com.google.common.collect.ImmutableSortedMapTest.CreationTests(); testCase.testCopyOfEmptyMap(); } public void testCopyOfExplicitComparator__CreationTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.CreationTests testCase = new com.google.common.collect.ImmutableSortedMapTest.CreationTests(); testCase.testCopyOfExplicitComparator(); } public void testCopyOfImmutableSortedSetDifferentComparator__CreationTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.CreationTests testCase = new com.google.common.collect.ImmutableSortedMapTest.CreationTests(); testCase.testCopyOfImmutableSortedSetDifferentComparator(); } public void testCopyOfSingletonMap__CreationTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.CreationTests testCase = new com.google.common.collect.ImmutableSortedMapTest.CreationTests(); testCase.testCopyOfSingletonMap(); } public void testCopyOfSortedExplicit__CreationTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.CreationTests testCase = new com.google.common.collect.ImmutableSortedMapTest.CreationTests(); testCase.testCopyOfSortedExplicit(); } public void testCopyOfSortedNatural__CreationTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.CreationTests testCase = new com.google.common.collect.ImmutableSortedMapTest.CreationTests(); testCase.testCopyOfSortedNatural(); } public void testEmptyBuilder__CreationTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.CreationTests testCase = new com.google.common.collect.ImmutableSortedMapTest.CreationTests(); testCase.testEmptyBuilder(); } public void testImmutableMapCopyOfImmutableSortedMap__CreationTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.CreationTests testCase = new com.google.common.collect.ImmutableSortedMapTest.CreationTests(); testCase.testImmutableMapCopyOfImmutableSortedMap(); } public void testOf__CreationTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.CreationTests testCase = new com.google.common.collect.ImmutableSortedMapTest.CreationTests(); testCase.testOf(); } public void testOfNullKey__CreationTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.CreationTests testCase = new com.google.common.collect.ImmutableSortedMapTest.CreationTests(); testCase.testOfNullKey(); } public void testOfNullValue__CreationTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.CreationTests testCase = new com.google.common.collect.ImmutableSortedMapTest.CreationTests(); testCase.testOfNullValue(); } public void testOfWithDuplicateKey__CreationTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.CreationTests testCase = new com.google.common.collect.ImmutableSortedMapTest.CreationTests(); testCase.testOfWithDuplicateKey(); } public void testPuttingTheSameKeyTwiceThrowsOnBuild__CreationTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.CreationTests testCase = new com.google.common.collect.ImmutableSortedMapTest.CreationTests(); testCase.testPuttingTheSameKeyTwiceThrowsOnBuild(); } public void testSingletonBuilder__CreationTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.CreationTests testCase = new com.google.common.collect.ImmutableSortedMapTest.CreationTests(); testCase.testSingletonBuilder(); } public void testClear__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testClear(); } public void testContainsKey__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testContainsKey(); } public void testContainsValue__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testContainsValue(); } public void testEntrySet__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testEntrySet(); } public void testEntrySetAddAndAddAll__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testEntrySetAddAndAddAll(); } public void testEntrySetClear__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testEntrySetClear(); } public void testEntrySetContainsEntryIncompatibleKey__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testEntrySetContainsEntryIncompatibleKey(); } public void testEntrySetContainsEntryNullKeyMissing__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testEntrySetContainsEntryNullKeyMissing(); } public void testEntrySetContainsEntryNullKeyPresent__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testEntrySetContainsEntryNullKeyPresent(); } public void testEntrySetForEmptyMap__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testEntrySetForEmptyMap(); } public void testEntrySetIteratorRemove__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testEntrySetIteratorRemove(); } public void testEntrySetRemove__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testEntrySetRemove(); } public void testEntrySetRemoveAll__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testEntrySetRemoveAll(); } public void testEntrySetRemoveAllNullFromEmpty__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testEntrySetRemoveAllNullFromEmpty(); } public void testEntrySetRemoveDifferentValue__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testEntrySetRemoveDifferentValue(); } public void testEntrySetRemoveMissingKey__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testEntrySetRemoveMissingKey(); } public void testEntrySetRemoveNullKeyMissing__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testEntrySetRemoveNullKeyMissing(); } public void testEntrySetRemoveNullKeyPresent__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testEntrySetRemoveNullKeyPresent(); } public void testEntrySetRetainAll__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testEntrySetRetainAll(); } public void testEntrySetRetainAllNullFromEmpty__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testEntrySetRetainAllNullFromEmpty(); } public void testEntrySetSetValue__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testEntrySetSetValue(); } public void testEntrySetSetValueSameValue__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testEntrySetSetValueSameValue(); } public void testEqualsForEmptyMap__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testEqualsForEmptyMap(); } public void testEqualsForEqualMap__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testEqualsForEqualMap(); } public void testEqualsForLargerMap__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testEqualsForLargerMap(); } public void testEqualsForSmallerMap__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testEqualsForSmallerMap(); } public void testGet__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testGet(); } public void testGetForEmptyMap__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testGetForEmptyMap(); } public void testGetNull__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testGetNull(); } public void testHashCode__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testHashCode(); } public void testHashCodeForEmptyMap__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testHashCodeForEmptyMap(); } public void testKeySetClear__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testKeySetClear(); } public void testKeySetRemove__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testKeySetRemove(); } public void testKeySetRemoveAll__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testKeySetRemoveAll(); } public void testKeySetRemoveAllNullFromEmpty__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testKeySetRemoveAllNullFromEmpty(); } public void testKeySetRetainAll__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testKeySetRetainAll(); } public void testKeySetRetainAllNullFromEmpty__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testKeySetRetainAllNullFromEmpty(); } public void testPutAllExistingKey__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testPutAllExistingKey(); } public void testPutAllNewKey__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testPutAllNewKey(); } public void testPutExistingKey__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testPutExistingKey(); } public void testPutNewKey__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testPutNewKey(); } public void testPutNullKey__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testPutNullKey(); } public void testPutNullValue__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testPutNullValue(); } public void testPutNullValueForExistingKey__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testPutNullValueForExistingKey(); } public void testRemove__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testRemove(); } public void testRemoveMissingKey__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testRemoveMissingKey(); } public void testSize__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testSize(); } public void testTailMapClearThrough__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testTailMapClearThrough(); } public void testTailMapRemoveThrough__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testTailMapRemoveThrough(); } public void testTailMapWriteThrough__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testTailMapWriteThrough(); } public void testValues__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testValues(); } public void testValuesClear__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testValuesClear(); } public void testValuesIteratorRemove__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testValuesIteratorRemove(); } public void testValuesRemove__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testValuesRemove(); } public void testValuesRemoveAll__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testValuesRemoveAll(); } public void testValuesRemoveAllNullFromEmpty__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testValuesRemoveAllNullFromEmpty(); } public void testValuesRemoveMissing__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testValuesRemoveMissing(); } public void testValuesRetainAll__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testValuesRetainAll(); } public void testValuesRetainAllNullFromEmpty__SubMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SubMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SubMapTests(); testCase.testValuesRetainAllNullFromEmpty(); } public void testClear__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testClear(); } public void testContainsKey__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testContainsKey(); } public void testContainsValue__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testContainsValue(); } public void testEntrySet__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testEntrySet(); } public void testEntrySetAddAndAddAll__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testEntrySetAddAndAddAll(); } public void testEntrySetClear__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testEntrySetClear(); } public void testEntrySetContainsEntryIncompatibleKey__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testEntrySetContainsEntryIncompatibleKey(); } public void testEntrySetContainsEntryNullKeyMissing__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testEntrySetContainsEntryNullKeyMissing(); } public void testEntrySetContainsEntryNullKeyPresent__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testEntrySetContainsEntryNullKeyPresent(); } public void testEntrySetForEmptyMap__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testEntrySetForEmptyMap(); } public void testEntrySetIteratorRemove__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testEntrySetIteratorRemove(); } public void testEntrySetRemove__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testEntrySetRemove(); } public void testEntrySetRemoveAll__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testEntrySetRemoveAll(); } public void testEntrySetRemoveAllNullFromEmpty__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testEntrySetRemoveAllNullFromEmpty(); } public void testEntrySetRemoveDifferentValue__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testEntrySetRemoveDifferentValue(); } public void testEntrySetRemoveMissingKey__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testEntrySetRemoveMissingKey(); } public void testEntrySetRemoveNullKeyMissing__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testEntrySetRemoveNullKeyMissing(); } public void testEntrySetRemoveNullKeyPresent__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testEntrySetRemoveNullKeyPresent(); } public void testEntrySetRetainAll__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testEntrySetRetainAll(); } public void testEntrySetRetainAllNullFromEmpty__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testEntrySetRetainAllNullFromEmpty(); } public void testEntrySetSetValue__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testEntrySetSetValue(); } public void testEntrySetSetValueSameValue__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testEntrySetSetValueSameValue(); } public void testEqualsForEmptyMap__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testEqualsForEmptyMap(); } public void testEqualsForEqualMap__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testEqualsForEqualMap(); } public void testEqualsForLargerMap__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testEqualsForLargerMap(); } public void testEqualsForSmallerMap__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testEqualsForSmallerMap(); } public void testGet__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testGet(); } public void testGetForEmptyMap__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testGetForEmptyMap(); } public void testGetNull__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testGetNull(); } public void testHashCode__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testHashCode(); } public void testHashCodeForEmptyMap__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testHashCodeForEmptyMap(); } public void testKeySetClear__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testKeySetClear(); } public void testKeySetRemove__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testKeySetRemove(); } public void testKeySetRemoveAll__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testKeySetRemoveAll(); } public void testKeySetRemoveAllNullFromEmpty__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testKeySetRemoveAllNullFromEmpty(); } public void testKeySetRetainAll__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testKeySetRetainAll(); } public void testKeySetRetainAllNullFromEmpty__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testKeySetRetainAllNullFromEmpty(); } public void testPutAllExistingKey__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testPutAllExistingKey(); } public void testPutAllNewKey__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testPutAllNewKey(); } public void testPutExistingKey__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testPutExistingKey(); } public void testPutNewKey__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testPutNewKey(); } public void testPutNullKey__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testPutNullKey(); } public void testPutNullValue__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testPutNullValue(); } public void testPutNullValueForExistingKey__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testPutNullValueForExistingKey(); } public void testRemove__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testRemove(); } public void testRemoveMissingKey__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testRemoveMissingKey(); } public void testSize__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testSize(); } public void testTailMapClearThrough__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testTailMapClearThrough(); } public void testTailMapRemoveThrough__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testTailMapRemoveThrough(); } public void testTailMapWriteThrough__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testTailMapWriteThrough(); } public void testValues__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testValues(); } public void testValuesClear__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testValuesClear(); } public void testValuesIteratorRemove__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testValuesIteratorRemove(); } public void testValuesRemove__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testValuesRemove(); } public void testValuesRemoveAll__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testValuesRemoveAll(); } public void testValuesRemoveAllNullFromEmpty__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testValuesRemoveAllNullFromEmpty(); } public void testValuesRemoveMissing__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testValuesRemoveMissing(); } public void testValuesRetainAll__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testValuesRetainAll(); } public void testValuesRetainAllNullFromEmpty__TailExclusiveMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailExclusiveMapTests(); testCase.testValuesRetainAllNullFromEmpty(); } public void testClear__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testClear(); } public void testContainsKey__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testContainsKey(); } public void testContainsValue__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testContainsValue(); } public void testEntrySet__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testEntrySet(); } public void testEntrySetAddAndAddAll__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testEntrySetAddAndAddAll(); } public void testEntrySetClear__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testEntrySetClear(); } public void testEntrySetContainsEntryIncompatibleKey__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testEntrySetContainsEntryIncompatibleKey(); } public void testEntrySetContainsEntryNullKeyMissing__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testEntrySetContainsEntryNullKeyMissing(); } public void testEntrySetContainsEntryNullKeyPresent__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testEntrySetContainsEntryNullKeyPresent(); } public void testEntrySetForEmptyMap__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testEntrySetForEmptyMap(); } public void testEntrySetIteratorRemove__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testEntrySetIteratorRemove(); } public void testEntrySetRemove__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testEntrySetRemove(); } public void testEntrySetRemoveAll__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testEntrySetRemoveAll(); } public void testEntrySetRemoveAllNullFromEmpty__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testEntrySetRemoveAllNullFromEmpty(); } public void testEntrySetRemoveDifferentValue__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testEntrySetRemoveDifferentValue(); } public void testEntrySetRemoveMissingKey__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testEntrySetRemoveMissingKey(); } public void testEntrySetRemoveNullKeyMissing__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testEntrySetRemoveNullKeyMissing(); } public void testEntrySetRemoveNullKeyPresent__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testEntrySetRemoveNullKeyPresent(); } public void testEntrySetRetainAll__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testEntrySetRetainAll(); } public void testEntrySetRetainAllNullFromEmpty__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testEntrySetRetainAllNullFromEmpty(); } public void testEntrySetSetValue__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testEntrySetSetValue(); } public void testEntrySetSetValueSameValue__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testEntrySetSetValueSameValue(); } public void testEqualsForEmptyMap__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testEqualsForEmptyMap(); } public void testEqualsForEqualMap__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testEqualsForEqualMap(); } public void testEqualsForLargerMap__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testEqualsForLargerMap(); } public void testEqualsForSmallerMap__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testEqualsForSmallerMap(); } public void testGet__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testGet(); } public void testGetForEmptyMap__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testGetForEmptyMap(); } public void testGetNull__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testGetNull(); } public void testHashCode__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testHashCode(); } public void testHashCodeForEmptyMap__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testHashCodeForEmptyMap(); } public void testKeySetClear__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testKeySetClear(); } public void testKeySetRemove__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testKeySetRemove(); } public void testKeySetRemoveAll__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testKeySetRemoveAll(); } public void testKeySetRemoveAllNullFromEmpty__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testKeySetRemoveAllNullFromEmpty(); } public void testKeySetRetainAll__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testKeySetRetainAll(); } public void testKeySetRetainAllNullFromEmpty__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testKeySetRetainAllNullFromEmpty(); } public void testPutAllExistingKey__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testPutAllExistingKey(); } public void testPutAllNewKey__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testPutAllNewKey(); } public void testPutExistingKey__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testPutExistingKey(); } public void testPutNewKey__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testPutNewKey(); } public void testPutNullKey__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testPutNullKey(); } public void testPutNullValue__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testPutNullValue(); } public void testPutNullValueForExistingKey__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testPutNullValueForExistingKey(); } public void testRemove__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testRemove(); } public void testRemoveMissingKey__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testRemoveMissingKey(); } public void testSize__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testSize(); } public void testTailMapClearThrough__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testTailMapClearThrough(); } public void testTailMapRemoveThrough__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testTailMapRemoveThrough(); } public void testTailMapWriteThrough__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testTailMapWriteThrough(); } public void testValues__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testValues(); } public void testValuesClear__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testValuesClear(); } public void testValuesIteratorRemove__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testValuesIteratorRemove(); } public void testValuesRemove__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testValuesRemove(); } public void testValuesRemoveAll__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testValuesRemoveAll(); } public void testValuesRemoveAllNullFromEmpty__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testValuesRemoveAllNullFromEmpty(); } public void testValuesRemoveMissing__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testValuesRemoveMissing(); } public void testValuesRetainAll__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testValuesRetainAll(); } public void testValuesRetainAllNullFromEmpty__TailMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.TailMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.TailMapTests(); testCase.testValuesRetainAllNullFromEmpty(); } public void testClear__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testClear(); } public void testContainsKey__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testContainsKey(); } public void testContainsValue__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testContainsValue(); } public void testEntrySet__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testEntrySet(); } public void testEntrySetAddAndAddAll__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testEntrySetAddAndAddAll(); } public void testEntrySetClear__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testEntrySetClear(); } public void testEntrySetContainsEntryIncompatibleKey__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testEntrySetContainsEntryIncompatibleKey(); } public void testEntrySetContainsEntryNullKeyMissing__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testEntrySetContainsEntryNullKeyMissing(); } public void testEntrySetContainsEntryNullKeyPresent__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testEntrySetContainsEntryNullKeyPresent(); } public void testEntrySetForEmptyMap__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testEntrySetForEmptyMap(); } public void testEntrySetIteratorRemove__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testEntrySetIteratorRemove(); } public void testEntrySetRemove__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testEntrySetRemove(); } public void testEntrySetRemoveAll__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testEntrySetRemoveAll(); } public void testEntrySetRemoveAllNullFromEmpty__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testEntrySetRemoveAllNullFromEmpty(); } public void testEntrySetRemoveDifferentValue__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testEntrySetRemoveDifferentValue(); } public void testEntrySetRemoveMissingKey__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testEntrySetRemoveMissingKey(); } public void testEntrySetRemoveNullKeyMissing__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testEntrySetRemoveNullKeyMissing(); } public void testEntrySetRemoveNullKeyPresent__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testEntrySetRemoveNullKeyPresent(); } public void testEntrySetRetainAll__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testEntrySetRetainAll(); } public void testEntrySetRetainAllNullFromEmpty__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testEntrySetRetainAllNullFromEmpty(); } public void testEntrySetSetValue__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testEntrySetSetValue(); } public void testEntrySetSetValueSameValue__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testEntrySetSetValueSameValue(); } public void testEqualsForEmptyMap__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testEqualsForEmptyMap(); } public void testEqualsForEqualMap__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testEqualsForEqualMap(); } public void testEqualsForLargerMap__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testEqualsForLargerMap(); } public void testEqualsForSmallerMap__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testEqualsForSmallerMap(); } public void testGet__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testGet(); } public void testGetForEmptyMap__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testGetForEmptyMap(); } public void testGetNull__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testGetNull(); } public void testHashCode__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testHashCode(); } public void testHashCodeForEmptyMap__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testHashCodeForEmptyMap(); } public void testKeySetClear__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testKeySetClear(); } public void testKeySetRemove__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testKeySetRemove(); } public void testKeySetRemoveAll__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testKeySetRemoveAll(); } public void testKeySetRemoveAllNullFromEmpty__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testKeySetRemoveAllNullFromEmpty(); } public void testKeySetRetainAll__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testKeySetRetainAll(); } public void testKeySetRetainAllNullFromEmpty__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testKeySetRetainAllNullFromEmpty(); } public void testPutAllExistingKey__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testPutAllExistingKey(); } public void testPutAllNewKey__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testPutAllNewKey(); } public void testPutExistingKey__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testPutExistingKey(); } public void testPutNewKey__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testPutNewKey(); } public void testPutNullKey__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testPutNullKey(); } public void testPutNullValue__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testPutNullValue(); } public void testPutNullValueForExistingKey__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testPutNullValueForExistingKey(); } public void testRemove__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testRemove(); } public void testRemoveMissingKey__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testRemoveMissingKey(); } public void testSize__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testSize(); } public void testTailMapClearThrough__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testTailMapClearThrough(); } public void testTailMapRemoveThrough__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testTailMapRemoveThrough(); } public void testTailMapWriteThrough__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testTailMapWriteThrough(); } public void testValues__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testValues(); } public void testValuesClear__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testValuesClear(); } public void testValuesIteratorRemove__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testValuesIteratorRemove(); } public void testValuesRemove__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testValuesRemove(); } public void testValuesRemoveAll__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testValuesRemoveAll(); } public void testValuesRemoveAllNullFromEmpty__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testValuesRemoveAllNullFromEmpty(); } public void testValuesRemoveMissing__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testValuesRemoveMissing(); } public void testValuesRetainAll__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testValuesRetainAll(); } public void testValuesRetainAllNullFromEmpty__HeadMapInclusiveTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapInclusiveTests(); testCase.testValuesRetainAllNullFromEmpty(); } public void testClear__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testClear(); } public void testContainsKey__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testContainsKey(); } public void testContainsValue__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testContainsValue(); } public void testEntrySet__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testEntrySet(); } public void testEntrySetAddAndAddAll__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testEntrySetAddAndAddAll(); } public void testEntrySetClear__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testEntrySetClear(); } public void testEntrySetContainsEntryIncompatibleKey__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testEntrySetContainsEntryIncompatibleKey(); } public void testEntrySetContainsEntryNullKeyMissing__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testEntrySetContainsEntryNullKeyMissing(); } public void testEntrySetContainsEntryNullKeyPresent__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testEntrySetContainsEntryNullKeyPresent(); } public void testEntrySetForEmptyMap__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testEntrySetForEmptyMap(); } public void testEntrySetIteratorRemove__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testEntrySetIteratorRemove(); } public void testEntrySetRemove__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testEntrySetRemove(); } public void testEntrySetRemoveAll__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testEntrySetRemoveAll(); } public void testEntrySetRemoveAllNullFromEmpty__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testEntrySetRemoveAllNullFromEmpty(); } public void testEntrySetRemoveDifferentValue__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testEntrySetRemoveDifferentValue(); } public void testEntrySetRemoveMissingKey__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testEntrySetRemoveMissingKey(); } public void testEntrySetRemoveNullKeyMissing__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testEntrySetRemoveNullKeyMissing(); } public void testEntrySetRemoveNullKeyPresent__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testEntrySetRemoveNullKeyPresent(); } public void testEntrySetRetainAll__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testEntrySetRetainAll(); } public void testEntrySetRetainAllNullFromEmpty__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testEntrySetRetainAllNullFromEmpty(); } public void testEntrySetSetValue__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testEntrySetSetValue(); } public void testEntrySetSetValueSameValue__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testEntrySetSetValueSameValue(); } public void testEqualsForEmptyMap__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testEqualsForEmptyMap(); } public void testEqualsForEqualMap__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testEqualsForEqualMap(); } public void testEqualsForLargerMap__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testEqualsForLargerMap(); } public void testEqualsForSmallerMap__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testEqualsForSmallerMap(); } public void testGet__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testGet(); } public void testGetForEmptyMap__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testGetForEmptyMap(); } public void testGetNull__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testGetNull(); } public void testHashCode__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testHashCode(); } public void testHashCodeForEmptyMap__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testHashCodeForEmptyMap(); } public void testKeySetClear__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testKeySetClear(); } public void testKeySetRemove__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testKeySetRemove(); } public void testKeySetRemoveAll__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testKeySetRemoveAll(); } public void testKeySetRemoveAllNullFromEmpty__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testKeySetRemoveAllNullFromEmpty(); } public void testKeySetRetainAll__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testKeySetRetainAll(); } public void testKeySetRetainAllNullFromEmpty__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testKeySetRetainAllNullFromEmpty(); } public void testPutAllExistingKey__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testPutAllExistingKey(); } public void testPutAllNewKey__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testPutAllNewKey(); } public void testPutExistingKey__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testPutExistingKey(); } public void testPutNewKey__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testPutNewKey(); } public void testPutNullKey__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testPutNullKey(); } public void testPutNullValue__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testPutNullValue(); } public void testPutNullValueForExistingKey__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testPutNullValueForExistingKey(); } public void testRemove__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testRemove(); } public void testRemoveMissingKey__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testRemoveMissingKey(); } public void testSize__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testSize(); } public void testTailMapClearThrough__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testTailMapClearThrough(); } public void testTailMapRemoveThrough__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testTailMapRemoveThrough(); } public void testTailMapWriteThrough__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testTailMapWriteThrough(); } public void testValues__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testValues(); } public void testValuesClear__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testValuesClear(); } public void testValuesIteratorRemove__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testValuesIteratorRemove(); } public void testValuesRemove__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testValuesRemove(); } public void testValuesRemoveAll__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testValuesRemoveAll(); } public void testValuesRemoveAllNullFromEmpty__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testValuesRemoveAllNullFromEmpty(); } public void testValuesRemoveMissing__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testValuesRemoveMissing(); } public void testValuesRetainAll__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testValuesRetainAll(); } public void testValuesRetainAllNullFromEmpty__HeadMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.HeadMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.HeadMapTests(); testCase.testValuesRetainAllNullFromEmpty(); } public void testClear__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testClear(); } public void testContainsKey__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testContainsKey(); } public void testContainsValue__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testContainsValue(); } public void testEntrySet__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testEntrySet(); } public void testEntrySetAddAndAddAll__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testEntrySetAddAndAddAll(); } public void testEntrySetClear__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testEntrySetClear(); } public void testEntrySetContainsEntryIncompatibleKey__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testEntrySetContainsEntryIncompatibleKey(); } public void testEntrySetContainsEntryNullKeyMissing__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testEntrySetContainsEntryNullKeyMissing(); } public void testEntrySetContainsEntryNullKeyPresent__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testEntrySetContainsEntryNullKeyPresent(); } public void testEntrySetForEmptyMap__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testEntrySetForEmptyMap(); } public void testEntrySetIteratorRemove__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testEntrySetIteratorRemove(); } public void testEntrySetRemove__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testEntrySetRemove(); } public void testEntrySetRemoveAll__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testEntrySetRemoveAll(); } public void testEntrySetRemoveAllNullFromEmpty__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testEntrySetRemoveAllNullFromEmpty(); } public void testEntrySetRemoveDifferentValue__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testEntrySetRemoveDifferentValue(); } public void testEntrySetRemoveMissingKey__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testEntrySetRemoveMissingKey(); } public void testEntrySetRemoveNullKeyMissing__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testEntrySetRemoveNullKeyMissing(); } public void testEntrySetRemoveNullKeyPresent__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testEntrySetRemoveNullKeyPresent(); } public void testEntrySetRetainAll__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testEntrySetRetainAll(); } public void testEntrySetRetainAllNullFromEmpty__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testEntrySetRetainAllNullFromEmpty(); } public void testEntrySetSetValue__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testEntrySetSetValue(); } public void testEntrySetSetValueSameValue__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testEntrySetSetValueSameValue(); } public void testEqualsForEmptyMap__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testEqualsForEmptyMap(); } public void testEqualsForEqualMap__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testEqualsForEqualMap(); } public void testEqualsForLargerMap__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testEqualsForLargerMap(); } public void testEqualsForSmallerMap__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testEqualsForSmallerMap(); } public void testGet__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testGet(); } public void testGetForEmptyMap__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testGetForEmptyMap(); } public void testGetNull__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testGetNull(); } public void testHashCode__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testHashCode(); } public void testHashCodeForEmptyMap__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testHashCodeForEmptyMap(); } public void testKeySetClear__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testKeySetClear(); } public void testKeySetRemove__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testKeySetRemove(); } public void testKeySetRemoveAll__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testKeySetRemoveAll(); } public void testKeySetRemoveAllNullFromEmpty__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testKeySetRemoveAllNullFromEmpty(); } public void testKeySetRetainAll__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testKeySetRetainAll(); } public void testKeySetRetainAllNullFromEmpty__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testKeySetRetainAllNullFromEmpty(); } public void testPutAllExistingKey__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testPutAllExistingKey(); } public void testPutAllNewKey__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testPutAllNewKey(); } public void testPutExistingKey__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testPutExistingKey(); } public void testPutNewKey__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testPutNewKey(); } public void testPutNullKey__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testPutNullKey(); } public void testPutNullValue__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testPutNullValue(); } public void testPutNullValueForExistingKey__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testPutNullValueForExistingKey(); } public void testRemove__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testRemove(); } public void testRemoveMissingKey__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testRemoveMissingKey(); } public void testSize__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testSize(); } public void testTailMapClearThrough__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testTailMapClearThrough(); } public void testTailMapRemoveThrough__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testTailMapRemoveThrough(); } public void testTailMapWriteThrough__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testTailMapWriteThrough(); } public void testValues__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testValues(); } public void testValuesClear__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testValuesClear(); } public void testValuesIteratorRemove__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testValuesIteratorRemove(); } public void testValuesRemove__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testValuesRemove(); } public void testValuesRemoveAll__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testValuesRemoveAll(); } public void testValuesRemoveAllNullFromEmpty__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testValuesRemoveAllNullFromEmpty(); } public void testValuesRemoveMissing__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testValuesRemoveMissing(); } public void testValuesRetainAll__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testValuesRetainAll(); } public void testValuesRetainAllNullFromEmpty__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.SingletonMapTests(); testCase.testValuesRetainAllNullFromEmpty(); } public void testClear__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testClear(); } public void testContainsKey__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testContainsKey(); } public void testContainsValue__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testContainsValue(); } public void testEntrySet__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testEntrySet(); } public void testEntrySetAddAndAddAll__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testEntrySetAddAndAddAll(); } public void testEntrySetClear__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testEntrySetClear(); } public void testEntrySetContainsEntryIncompatibleKey__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testEntrySetContainsEntryIncompatibleKey(); } public void testEntrySetContainsEntryNullKeyMissing__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testEntrySetContainsEntryNullKeyMissing(); } public void testEntrySetContainsEntryNullKeyPresent__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testEntrySetContainsEntryNullKeyPresent(); } public void testEntrySetForEmptyMap__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testEntrySetForEmptyMap(); } public void testEntrySetIteratorRemove__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testEntrySetIteratorRemove(); } public void testEntrySetRemove__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testEntrySetRemove(); } public void testEntrySetRemoveAll__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testEntrySetRemoveAll(); } public void testEntrySetRemoveAllNullFromEmpty__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testEntrySetRemoveAllNullFromEmpty(); } public void testEntrySetRemoveDifferentValue__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testEntrySetRemoveDifferentValue(); } public void testEntrySetRemoveMissingKey__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testEntrySetRemoveMissingKey(); } public void testEntrySetRemoveNullKeyMissing__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testEntrySetRemoveNullKeyMissing(); } public void testEntrySetRemoveNullKeyPresent__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testEntrySetRemoveNullKeyPresent(); } public void testEntrySetRetainAll__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testEntrySetRetainAll(); } public void testEntrySetRetainAllNullFromEmpty__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testEntrySetRetainAllNullFromEmpty(); } public void testEntrySetSetValue__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testEntrySetSetValue(); } public void testEntrySetSetValueSameValue__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testEntrySetSetValueSameValue(); } public void testEqualsForEmptyMap__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testEqualsForEmptyMap(); } public void testEqualsForEqualMap__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testEqualsForEqualMap(); } public void testEqualsForLargerMap__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testEqualsForLargerMap(); } public void testEqualsForSmallerMap__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testEqualsForSmallerMap(); } public void testGet__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testGet(); } public void testGetForEmptyMap__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testGetForEmptyMap(); } public void testGetNull__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testGetNull(); } public void testHashCode__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testHashCode(); } public void testHashCodeForEmptyMap__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testHashCodeForEmptyMap(); } public void testKeySetClear__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testKeySetClear(); } public void testKeySetRemove__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testKeySetRemove(); } public void testKeySetRemoveAll__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testKeySetRemoveAll(); } public void testKeySetRemoveAllNullFromEmpty__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testKeySetRemoveAllNullFromEmpty(); } public void testKeySetRetainAll__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testKeySetRetainAll(); } public void testKeySetRetainAllNullFromEmpty__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testKeySetRetainAllNullFromEmpty(); } public void testPutAllExistingKey__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testPutAllExistingKey(); } public void testPutAllNewKey__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testPutAllNewKey(); } public void testPutExistingKey__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testPutExistingKey(); } public void testPutNewKey__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testPutNewKey(); } public void testPutNullKey__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testPutNullKey(); } public void testPutNullValue__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testPutNullValue(); } public void testPutNullValueForExistingKey__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testPutNullValueForExistingKey(); } public void testRemove__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testRemove(); } public void testRemoveMissingKey__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testRemoveMissingKey(); } public void testSize__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testSize(); } public void testTailMapClearThrough__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testTailMapClearThrough(); } public void testTailMapRemoveThrough__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testTailMapRemoveThrough(); } public void testTailMapWriteThrough__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testTailMapWriteThrough(); } public void testValues__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testValues(); } public void testValuesClear__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testValuesClear(); } public void testValuesIteratorRemove__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testValuesIteratorRemove(); } public void testValuesRemove__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testValuesRemove(); } public void testValuesRemoveAll__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testValuesRemoveAll(); } public void testValuesRemoveAllNullFromEmpty__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testValuesRemoveAllNullFromEmpty(); } public void testValuesRemoveMissing__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testValuesRemoveMissing(); } public void testValuesRetainAll__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testValuesRetainAll(); } public void testValuesRetainAllNullFromEmpty__MapTests() throws Exception { com.google.common.collect.ImmutableSortedMapTest.MapTests testCase = new com.google.common.collect.ImmutableSortedMapTest.MapTests(); testCase.testValuesRetainAllNullFromEmpty(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class UnmodifiableIteratorTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testRemove() throws Exception { com.google.common.collect.UnmodifiableIteratorTest testCase = new com.google.common.collect.UnmodifiableIteratorTest(); testCase.testRemove(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class TreeMultisetTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testCreate() throws Exception { com.google.common.collect.TreeMultisetTest testCase = new com.google.common.collect.TreeMultisetTest(); testCase.testCreate(); } public void testCreateFromIterable() throws Exception { com.google.common.collect.TreeMultisetTest testCase = new com.google.common.collect.TreeMultisetTest(); testCase.testCreateFromIterable(); } public void testCreateWithComparator() throws Exception { com.google.common.collect.TreeMultisetTest testCase = new com.google.common.collect.TreeMultisetTest(); testCase.testCreateWithComparator(); } public void testCustomComparator() throws Exception { com.google.common.collect.TreeMultisetTest testCase = new com.google.common.collect.TreeMultisetTest(); testCase.testCustomComparator(); } public void testDegenerateComparator() throws Exception { com.google.common.collect.TreeMultisetTest testCase = new com.google.common.collect.TreeMultisetTest(); testCase.testDegenerateComparator(); } public void testElementSetSortedSetMethods() throws Exception { com.google.common.collect.TreeMultisetTest testCase = new com.google.common.collect.TreeMultisetTest(); testCase.testElementSetSortedSetMethods(); } public void testElementSetSubsetClear() throws Exception { com.google.common.collect.TreeMultisetTest testCase = new com.google.common.collect.TreeMultisetTest(); testCase.testElementSetSubsetClear(); } public void testElementSetSubsetRemove() throws Exception { com.google.common.collect.TreeMultisetTest testCase = new com.google.common.collect.TreeMultisetTest(); testCase.testElementSetSubsetRemove(); } public void testElementSetSubsetRemoveAll() throws Exception { com.google.common.collect.TreeMultisetTest testCase = new com.google.common.collect.TreeMultisetTest(); testCase.testElementSetSubsetRemoveAll(); } public void testElementSetSubsetRetainAll() throws Exception { com.google.common.collect.TreeMultisetTest testCase = new com.google.common.collect.TreeMultisetTest(); testCase.testElementSetSubsetRetainAll(); } public void testNullAcceptingComparator() throws Exception { com.google.common.collect.TreeMultisetTest testCase = new com.google.common.collect.TreeMultisetTest(); testCase.testNullAcceptingComparator(); } public void testSubMultisetSize() throws Exception { com.google.common.collect.TreeMultisetTest testCase = new com.google.common.collect.TreeMultisetTest(); testCase.testSubMultisetSize(); } public void testToString() throws Exception { com.google.common.collect.TreeMultisetTest testCase = new com.google.common.collect.TreeMultisetTest(); testCase.testToString(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class ForwardingSortedMapImplementsMapTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testClear() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testClear(); } public void testContainsKey() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testContainsKey(); } public void testContainsValue() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testContainsValue(); } public void testEntrySet() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testEntrySet(); } public void testEntrySetAddAndAddAll() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testEntrySetAddAndAddAll(); } public void testEntrySetClear() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testEntrySetClear(); } public void testEntrySetContainsEntryIncompatibleKey() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testEntrySetContainsEntryIncompatibleKey(); } public void testEntrySetContainsEntryNullKeyMissing() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testEntrySetContainsEntryNullKeyMissing(); } public void testEntrySetContainsEntryNullKeyPresent() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testEntrySetContainsEntryNullKeyPresent(); } public void testEntrySetForEmptyMap() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testEntrySetForEmptyMap(); } public void testEntrySetIteratorRemove() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testEntrySetIteratorRemove(); } public void testEntrySetRemove() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testEntrySetRemove(); } public void testEntrySetRemoveAll() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testEntrySetRemoveAll(); } public void testEntrySetRemoveAllNullFromEmpty() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testEntrySetRemoveAllNullFromEmpty(); } public void testEntrySetRemoveDifferentValue() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testEntrySetRemoveDifferentValue(); } public void testEntrySetRemoveMissingKey() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testEntrySetRemoveMissingKey(); } public void testEntrySetRemoveNullKeyMissing() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testEntrySetRemoveNullKeyMissing(); } public void testEntrySetRemoveNullKeyPresent() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testEntrySetRemoveNullKeyPresent(); } public void testEntrySetRetainAll() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testEntrySetRetainAll(); } public void testEntrySetRetainAllNullFromEmpty() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testEntrySetRetainAllNullFromEmpty(); } public void testEntrySetSetValue() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testEntrySetSetValue(); } public void testEntrySetSetValueSameValue() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testEntrySetSetValueSameValue(); } public void testEqualsForEmptyMap() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testEqualsForEmptyMap(); } public void testEqualsForEqualMap() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testEqualsForEqualMap(); } public void testEqualsForLargerMap() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testEqualsForLargerMap(); } public void testEqualsForSmallerMap() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testEqualsForSmallerMap(); } public void testGet() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testGet(); } public void testGetForEmptyMap() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testGetForEmptyMap(); } public void testGetNull() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testGetNull(); } public void testHashCode() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testHashCode(); } public void testHashCodeForEmptyMap() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testHashCodeForEmptyMap(); } public void testKeySetClear() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testKeySetClear(); } public void testKeySetRemove() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testKeySetRemove(); } public void testKeySetRemoveAll() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testKeySetRemoveAll(); } public void testKeySetRemoveAllNullFromEmpty() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testKeySetRemoveAllNullFromEmpty(); } public void testKeySetRetainAll() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testKeySetRetainAll(); } public void testKeySetRetainAllNullFromEmpty() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testKeySetRetainAllNullFromEmpty(); } public void testPutAllExistingKey() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testPutAllExistingKey(); } public void testPutAllNewKey() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testPutAllNewKey(); } public void testPutExistingKey() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testPutExistingKey(); } public void testPutNewKey() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testPutNewKey(); } public void testPutNullKey() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testPutNullKey(); } public void testPutNullValue() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testPutNullValue(); } public void testPutNullValueForExistingKey() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testPutNullValueForExistingKey(); } public void testRemove() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testRemove(); } public void testRemoveMissingKey() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testRemoveMissingKey(); } public void testSize() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testSize(); } public void testTailMapClearThrough() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testTailMapClearThrough(); } public void testTailMapRemoveThrough() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testTailMapRemoveThrough(); } public void testTailMapWriteThrough() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testTailMapWriteThrough(); } public void testValues() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testValues(); } public void testValuesClear() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testValuesClear(); } public void testValuesIteratorRemove() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testValuesIteratorRemove(); } public void testValuesRemove() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testValuesRemove(); } public void testValuesRemoveAll() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testValuesRemoveAll(); } public void testValuesRemoveAllNullFromEmpty() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testValuesRemoveAllNullFromEmpty(); } public void testValuesRemoveMissing() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testValuesRemoveMissing(); } public void testValuesRetainAll() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testValuesRetainAll(); } public void testValuesRetainAllNullFromEmpty() throws Exception { com.google.common.collect.ForwardingSortedMapImplementsMapTest testCase = new com.google.common.collect.ForwardingSortedMapImplementsMapTest(); testCase.testValuesRetainAllNullFromEmpty(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class ImmutableMapTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testAsMultimap() throws Exception { com.google.common.collect.ImmutableMapTest testCase = new com.google.common.collect.ImmutableMapTest(); testCase.testAsMultimap(); } public void testAsMultimapCaches() throws Exception { com.google.common.collect.ImmutableMapTest testCase = new com.google.common.collect.ImmutableMapTest(); testCase.testAsMultimapCaches(); } public void testAsMultimapWhenEmpty() throws Exception { com.google.common.collect.ImmutableMapTest testCase = new com.google.common.collect.ImmutableMapTest(); testCase.testAsMultimapWhenEmpty(); } public void testCopyOfEnumMap() throws Exception { com.google.common.collect.ImmutableMapTest testCase = new com.google.common.collect.ImmutableMapTest(); testCase.testCopyOfEnumMap(); } public void testEquals() throws Exception { com.google.common.collect.ImmutableMapTest testCase = new com.google.common.collect.ImmutableMapTest(); testCase.testEquals(); } public void testMutableValues() throws Exception { com.google.common.collect.ImmutableMapTest testCase = new com.google.common.collect.ImmutableMapTest(); testCase.testMutableValues(); } public void testNullGet() throws Exception { com.google.common.collect.ImmutableMapTest testCase = new com.google.common.collect.ImmutableMapTest(); testCase.testNullGet(); } public void testBuilder__CreationTests() throws Exception { com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); testCase.testBuilder(); } public void testBuilderPutAll__CreationTests() throws Exception { com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); testCase.testBuilderPutAll(); } public void testBuilderPutAllWithEmptyMap__CreationTests() throws Exception { com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); testCase.testBuilderPutAllWithEmptyMap(); } public void testBuilderPutImmutableEntryWithNullKeyFailsAtomically__CreationTests() throws Exception { com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); testCase.testBuilderPutImmutableEntryWithNullKeyFailsAtomically(); } public void testBuilderPutMutableEntryWithNullKeyFailsAtomically__CreationTests() throws Exception { com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); testCase.testBuilderPutMutableEntryWithNullKeyFailsAtomically(); } public void testBuilderPutNullKey__CreationTests() throws Exception { com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); testCase.testBuilderPutNullKey(); } public void testBuilderPutNullKeyFailsAtomically__CreationTests() throws Exception { com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); testCase.testBuilderPutNullKeyFailsAtomically(); } public void testBuilderPutNullKeyViaPutAll__CreationTests() throws Exception { com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); testCase.testBuilderPutNullKeyViaPutAll(); } public void testBuilderPutNullValue__CreationTests() throws Exception { com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); testCase.testBuilderPutNullValue(); } public void testBuilderPutNullValueViaPutAll__CreationTests() throws Exception { com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); testCase.testBuilderPutNullValueViaPutAll(); } public void testBuilderReuse__CreationTests() throws Exception { com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); testCase.testBuilderReuse(); } public void testBuilder_withImmutableEntry__CreationTests() throws Exception { com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); testCase.testBuilder_withImmutableEntry(); } public void testBuilder_withImmutableEntryAndNullContents__CreationTests() throws Exception { com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); testCase.testBuilder_withImmutableEntryAndNullContents(); } public void testBuilder_withMutableEntry__CreationTests() throws Exception { com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); testCase.testBuilder_withMutableEntry(); } public void testCopyOf__CreationTests() throws Exception { com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); testCase.testCopyOf(); } public void testCopyOfEmptyMap__CreationTests() throws Exception { com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); testCase.testCopyOfEmptyMap(); } public void testCopyOfSingletonMap__CreationTests() throws Exception { com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); testCase.testCopyOfSingletonMap(); } public void testEmptyBuilder__CreationTests() throws Exception { com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); testCase.testEmptyBuilder(); } public void testOf__CreationTests() throws Exception { com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); testCase.testOf(); } public void testOfNullKey__CreationTests() throws Exception { com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); testCase.testOfNullKey(); } public void testOfNullValue__CreationTests() throws Exception { com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); testCase.testOfNullValue(); } public void testOfWithDuplicateKey__CreationTests() throws Exception { com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); testCase.testOfWithDuplicateKey(); } public void testPuttingTheSameKeyTwiceThrowsOnBuild__CreationTests() throws Exception { com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); testCase.testPuttingTheSameKeyTwiceThrowsOnBuild(); } public void testSingletonBuilder__CreationTests() throws Exception { com.google.common.collect.ImmutableMapTest.CreationTests testCase = new com.google.common.collect.ImmutableMapTest.CreationTests(); testCase.testSingletonBuilder(); } public void testClear__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testClear(); } public void testContainsKey__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testContainsKey(); } public void testContainsValue__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testContainsValue(); } public void testEntrySet__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testEntrySet(); } public void testEntrySetAddAndAddAll__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testEntrySetAddAndAddAll(); } public void testEntrySetClear__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testEntrySetClear(); } public void testEntrySetContainsEntryIncompatibleKey__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testEntrySetContainsEntryIncompatibleKey(); } public void testEntrySetContainsEntryNullKeyMissing__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testEntrySetContainsEntryNullKeyMissing(); } public void testEntrySetContainsEntryNullKeyPresent__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testEntrySetContainsEntryNullKeyPresent(); } public void testEntrySetForEmptyMap__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testEntrySetForEmptyMap(); } public void testEntrySetIteratorRemove__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testEntrySetIteratorRemove(); } public void testEntrySetRemove__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testEntrySetRemove(); } public void testEntrySetRemoveAll__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testEntrySetRemoveAll(); } public void testEntrySetRemoveAllNullFromEmpty__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testEntrySetRemoveAllNullFromEmpty(); } public void testEntrySetRemoveDifferentValue__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testEntrySetRemoveDifferentValue(); } public void testEntrySetRemoveMissingKey__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testEntrySetRemoveMissingKey(); } public void testEntrySetRemoveNullKeyMissing__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testEntrySetRemoveNullKeyMissing(); } public void testEntrySetRemoveNullKeyPresent__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testEntrySetRemoveNullKeyPresent(); } public void testEntrySetRetainAll__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testEntrySetRetainAll(); } public void testEntrySetRetainAllNullFromEmpty__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testEntrySetRetainAllNullFromEmpty(); } public void testEntrySetSetValue__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testEntrySetSetValue(); } public void testEntrySetSetValueSameValue__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testEntrySetSetValueSameValue(); } public void testEqualsForEmptyMap__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testEqualsForEmptyMap(); } public void testEqualsForEqualMap__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testEqualsForEqualMap(); } public void testEqualsForLargerMap__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testEqualsForLargerMap(); } public void testEqualsForSmallerMap__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testEqualsForSmallerMap(); } public void testGet__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testGet(); } public void testGetForEmptyMap__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testGetForEmptyMap(); } public void testGetNull__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testGetNull(); } public void testHashCode__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testHashCode(); } public void testHashCodeForEmptyMap__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testHashCodeForEmptyMap(); } public void testKeySetClear__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testKeySetClear(); } public void testKeySetRemove__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testKeySetRemove(); } public void testKeySetRemoveAll__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testKeySetRemoveAll(); } public void testKeySetRemoveAllNullFromEmpty__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testKeySetRemoveAllNullFromEmpty(); } public void testKeySetRetainAll__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testKeySetRetainAll(); } public void testKeySetRetainAllNullFromEmpty__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testKeySetRetainAllNullFromEmpty(); } public void testPutAllExistingKey__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testPutAllExistingKey(); } public void testPutAllNewKey__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testPutAllNewKey(); } public void testPutExistingKey__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testPutExistingKey(); } public void testPutNewKey__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testPutNewKey(); } public void testPutNullKey__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testPutNullKey(); } public void testPutNullValue__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testPutNullValue(); } public void testPutNullValueForExistingKey__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testPutNullValueForExistingKey(); } public void testRemove__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testRemove(); } public void testRemoveMissingKey__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testRemoveMissingKey(); } public void testSize__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testSize(); } public void testValues__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testValues(); } public void testValuesClear__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testValuesClear(); } public void testValuesIteratorRemove__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testValuesIteratorRemove(); } public void testValuesRemove__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testValuesRemove(); } public void testValuesRemoveAll__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testValuesRemoveAll(); } public void testValuesRemoveAllNullFromEmpty__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testValuesRemoveAllNullFromEmpty(); } public void testValuesRemoveMissing__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testValuesRemoveMissing(); } public void testValuesRetainAll__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testValuesRetainAll(); } public void testValuesRetainAllNullFromEmpty__MapTestsWithBadHashes() throws Exception { com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes testCase = new com.google.common.collect.ImmutableMapTest.MapTestsWithBadHashes(); testCase.testValuesRetainAllNullFromEmpty(); } public void testClear__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testClear(); } public void testContainsKey__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testContainsKey(); } public void testContainsValue__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testContainsValue(); } public void testEntrySet__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testEntrySet(); } public void testEntrySetAddAndAddAll__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testEntrySetAddAndAddAll(); } public void testEntrySetClear__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testEntrySetClear(); } public void testEntrySetContainsEntryIncompatibleKey__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testEntrySetContainsEntryIncompatibleKey(); } public void testEntrySetContainsEntryNullKeyMissing__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testEntrySetContainsEntryNullKeyMissing(); } public void testEntrySetContainsEntryNullKeyPresent__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testEntrySetContainsEntryNullKeyPresent(); } public void testEntrySetForEmptyMap__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testEntrySetForEmptyMap(); } public void testEntrySetIteratorRemove__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testEntrySetIteratorRemove(); } public void testEntrySetRemove__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testEntrySetRemove(); } public void testEntrySetRemoveAll__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testEntrySetRemoveAll(); } public void testEntrySetRemoveAllNullFromEmpty__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testEntrySetRemoveAllNullFromEmpty(); } public void testEntrySetRemoveDifferentValue__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testEntrySetRemoveDifferentValue(); } public void testEntrySetRemoveMissingKey__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testEntrySetRemoveMissingKey(); } public void testEntrySetRemoveNullKeyMissing__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testEntrySetRemoveNullKeyMissing(); } public void testEntrySetRemoveNullKeyPresent__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testEntrySetRemoveNullKeyPresent(); } public void testEntrySetRetainAll__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testEntrySetRetainAll(); } public void testEntrySetRetainAllNullFromEmpty__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testEntrySetRetainAllNullFromEmpty(); } public void testEntrySetSetValue__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testEntrySetSetValue(); } public void testEntrySetSetValueSameValue__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testEntrySetSetValueSameValue(); } public void testEqualsForEmptyMap__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testEqualsForEmptyMap(); } public void testEqualsForEqualMap__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testEqualsForEqualMap(); } public void testEqualsForLargerMap__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testEqualsForLargerMap(); } public void testEqualsForSmallerMap__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testEqualsForSmallerMap(); } public void testGet__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testGet(); } public void testGetForEmptyMap__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testGetForEmptyMap(); } public void testGetNull__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testGetNull(); } public void testHashCode__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testHashCode(); } public void testHashCodeForEmptyMap__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testHashCodeForEmptyMap(); } public void testKeySetClear__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testKeySetClear(); } public void testKeySetRemove__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testKeySetRemove(); } public void testKeySetRemoveAll__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testKeySetRemoveAll(); } public void testKeySetRemoveAllNullFromEmpty__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testKeySetRemoveAllNullFromEmpty(); } public void testKeySetRetainAll__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testKeySetRetainAll(); } public void testKeySetRetainAllNullFromEmpty__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testKeySetRetainAllNullFromEmpty(); } public void testPutAllExistingKey__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testPutAllExistingKey(); } public void testPutAllNewKey__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testPutAllNewKey(); } public void testPutExistingKey__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testPutExistingKey(); } public void testPutNewKey__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testPutNewKey(); } public void testPutNullKey__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testPutNullKey(); } public void testPutNullValue__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testPutNullValue(); } public void testPutNullValueForExistingKey__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testPutNullValueForExistingKey(); } public void testRemove__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testRemove(); } public void testRemoveMissingKey__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testRemoveMissingKey(); } public void testSize__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testSize(); } public void testValues__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testValues(); } public void testValuesClear__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testValuesClear(); } public void testValuesIteratorRemove__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testValuesIteratorRemove(); } public void testValuesRemove__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testValuesRemove(); } public void testValuesRemoveAll__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testValuesRemoveAll(); } public void testValuesRemoveAllNullFromEmpty__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testValuesRemoveAllNullFromEmpty(); } public void testValuesRemoveMissing__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testValuesRemoveMissing(); } public void testValuesRetainAll__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testValuesRetainAll(); } public void testValuesRetainAllNullFromEmpty__SingletonMapTests() throws Exception { com.google.common.collect.ImmutableMapTest.SingletonMapTests testCase = new com.google.common.collect.ImmutableMapTest.SingletonMapTests(); testCase.testValuesRetainAllNullFromEmpty(); } public void testClear__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testClear(); } public void testContainsKey__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testContainsKey(); } public void testContainsValue__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testContainsValue(); } public void testEntrySet__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testEntrySet(); } public void testEntrySetAddAndAddAll__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testEntrySetAddAndAddAll(); } public void testEntrySetClear__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testEntrySetClear(); } public void testEntrySetContainsEntryIncompatibleKey__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testEntrySetContainsEntryIncompatibleKey(); } public void testEntrySetContainsEntryNullKeyMissing__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testEntrySetContainsEntryNullKeyMissing(); } public void testEntrySetContainsEntryNullKeyPresent__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testEntrySetContainsEntryNullKeyPresent(); } public void testEntrySetForEmptyMap__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testEntrySetForEmptyMap(); } public void testEntrySetIteratorRemove__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testEntrySetIteratorRemove(); } public void testEntrySetRemove__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testEntrySetRemove(); } public void testEntrySetRemoveAll__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testEntrySetRemoveAll(); } public void testEntrySetRemoveAllNullFromEmpty__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testEntrySetRemoveAllNullFromEmpty(); } public void testEntrySetRemoveDifferentValue__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testEntrySetRemoveDifferentValue(); } public void testEntrySetRemoveMissingKey__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testEntrySetRemoveMissingKey(); } public void testEntrySetRemoveNullKeyMissing__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testEntrySetRemoveNullKeyMissing(); } public void testEntrySetRemoveNullKeyPresent__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testEntrySetRemoveNullKeyPresent(); } public void testEntrySetRetainAll__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testEntrySetRetainAll(); } public void testEntrySetRetainAllNullFromEmpty__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testEntrySetRetainAllNullFromEmpty(); } public void testEntrySetSetValue__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testEntrySetSetValue(); } public void testEntrySetSetValueSameValue__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testEntrySetSetValueSameValue(); } public void testEqualsForEmptyMap__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testEqualsForEmptyMap(); } public void testEqualsForEqualMap__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testEqualsForEqualMap(); } public void testEqualsForLargerMap__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testEqualsForLargerMap(); } public void testEqualsForSmallerMap__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testEqualsForSmallerMap(); } public void testGet__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testGet(); } public void testGetForEmptyMap__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testGetForEmptyMap(); } public void testGetNull__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testGetNull(); } public void testHashCode__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testHashCode(); } public void testHashCodeForEmptyMap__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testHashCodeForEmptyMap(); } public void testKeySetClear__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testKeySetClear(); } public void testKeySetRemove__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testKeySetRemove(); } public void testKeySetRemoveAll__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testKeySetRemoveAll(); } public void testKeySetRemoveAllNullFromEmpty__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testKeySetRemoveAllNullFromEmpty(); } public void testKeySetRetainAll__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testKeySetRetainAll(); } public void testKeySetRetainAllNullFromEmpty__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testKeySetRetainAllNullFromEmpty(); } public void testPutAllExistingKey__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testPutAllExistingKey(); } public void testPutAllNewKey__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testPutAllNewKey(); } public void testPutExistingKey__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testPutExistingKey(); } public void testPutNewKey__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testPutNewKey(); } public void testPutNullKey__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testPutNullKey(); } public void testPutNullValue__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testPutNullValue(); } public void testPutNullValueForExistingKey__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testPutNullValueForExistingKey(); } public void testRemove__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testRemove(); } public void testRemoveMissingKey__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testRemoveMissingKey(); } public void testSize__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testSize(); } public void testValues__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testValues(); } public void testValuesClear__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testValuesClear(); } public void testValuesIteratorRemove__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testValuesIteratorRemove(); } public void testValuesRemove__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testValuesRemove(); } public void testValuesRemoveAll__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testValuesRemoveAll(); } public void testValuesRemoveAllNullFromEmpty__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testValuesRemoveAllNullFromEmpty(); } public void testValuesRemoveMissing__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testValuesRemoveMissing(); } public void testValuesRetainAll__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testValuesRetainAll(); } public void testValuesRetainAllNullFromEmpty__MapTests() throws Exception { com.google.common.collect.ImmutableMapTest.MapTests testCase = new com.google.common.collect.ImmutableMapTest.MapTests(); testCase.testValuesRetainAllNullFromEmpty(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class ListsTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testArraysAsList() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testArraysAsList(); } public void testAsList1Small() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testAsList1Small(); } public void testAsList2() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testAsList2(); } public void testCartesianProductTooBig() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testCartesianProductTooBig(); } public void testCartesianProduct_2x2x2() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testCartesianProduct_2x2x2(); } public void testCartesianProduct_binary1x1() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testCartesianProduct_binary1x1(); } public void testCartesianProduct_binary1x2() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testCartesianProduct_binary1x2(); } public void testCartesianProduct_binary2x2() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testCartesianProduct_binary2x2(); } public void testCartesianProduct_contains() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testCartesianProduct_contains(); } public void testCartesianProduct_unrelatedTypes() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testCartesianProduct_unrelatedTypes(); } public void testCharactersOfIsView() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testCharactersOfIsView(); } public void testComputeArrayListCapacity() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testComputeArrayListCapacity(); } public void testNewArrayListEmpty() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testNewArrayListEmpty(); } public void testNewArrayListFromCollection() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testNewArrayListFromCollection(); } public void testNewArrayListFromIterable() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testNewArrayListFromIterable(); } public void testNewArrayListFromIterator() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testNewArrayListFromIterator(); } public void testNewArrayListVarArgs() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testNewArrayListVarArgs(); } public void testNewArrayListWithCapacity() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testNewArrayListWithCapacity(); } public void testNewArrayListWithCapacity_negative() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testNewArrayListWithCapacity_negative(); } public void testNewArrayListWithExpectedSize() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testNewArrayListWithExpectedSize(); } public void testNewArrayListWithExpectedSize_negative() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testNewArrayListWithExpectedSize_negative(); } public void testNewLinkedListEmpty() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testNewLinkedListEmpty(); } public void testNewLinkedListFromCollection() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testNewLinkedListFromCollection(); } public void testNewLinkedListFromIterable() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testNewLinkedListFromIterable(); } public void testPartitionRandomAccessFalse() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testPartitionRandomAccessFalse(); } public void testPartitionSize_1() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testPartitionSize_1(); } public void testPartition_1_1() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testPartition_1_1(); } public void testPartition_1_2() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testPartition_1_2(); } public void testPartition_2_1() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testPartition_2_1(); } public void testPartition_3_2() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testPartition_3_2(); } public void testPartition_badSize() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testPartition_badSize(); } public void testPartition_empty() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testPartition_empty(); } public void testPartition_view() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testPartition_view(); } public void testReverseViewRandomAccess() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testReverseViewRandomAccess(); } public void testReverseViewSequential() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testReverseViewSequential(); } public void testTransformHashCodeRandomAccess() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testTransformHashCodeRandomAccess(); } public void testTransformHashCodeSequential() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testTransformHashCodeSequential(); } public void testTransformIteratorRandomAccess() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testTransformIteratorRandomAccess(); } public void testTransformIteratorSequential() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testTransformIteratorSequential(); } public void testTransformListIteratorRandomAccess() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testTransformListIteratorRandomAccess(); } public void testTransformListIteratorSequential() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testTransformListIteratorSequential(); } public void testTransformModifiableRandomAccess() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testTransformModifiableRandomAccess(); } public void testTransformModifiableSequential() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testTransformModifiableSequential(); } public void testTransformRandomAccess() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testTransformRandomAccess(); } public void testTransformSequential() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testTransformSequential(); } public void testTransformViewRandomAccess() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testTransformViewRandomAccess(); } public void testTransformViewSequential() throws Exception { com.google.common.collect.ListsTest testCase = new com.google.common.collect.ListsTest(); testCase.testTransformViewSequential(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class CountTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testAddAndGet() throws Exception { com.google.common.collect.CountTest testCase = new com.google.common.collect.CountTest(); testCase.testAddAndGet(); } public void testGet() throws Exception { com.google.common.collect.CountTest testCase = new com.google.common.collect.CountTest(); testCase.testGet(); } public void testGetAndAdd() throws Exception { com.google.common.collect.CountTest testCase = new com.google.common.collect.CountTest(); testCase.testGetAndAdd(); } public void testGetAndSet() throws Exception { com.google.common.collect.CountTest testCase = new com.google.common.collect.CountTest(); testCase.testGetAndSet(); } public void testSet() throws Exception { com.google.common.collect.CountTest testCase = new com.google.common.collect.CountTest(); testCase.testSet(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class ConstrainedBiMapTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testPutWithAllowedKeyForbiddenValue() throws Exception { com.google.common.collect.ConstrainedBiMapTest testCase = new com.google.common.collect.ConstrainedBiMapTest(); testCase.testPutWithAllowedKeyForbiddenValue(); } public void testPutWithForbiddenKeyAllowedValue() throws Exception { com.google.common.collect.ConstrainedBiMapTest testCase = new com.google.common.collect.ConstrainedBiMapTest(); testCase.testPutWithForbiddenKeyAllowedValue(); } public void testPutWithForbiddenKeyForbiddenValue() throws Exception { com.google.common.collect.ConstrainedBiMapTest testCase = new com.google.common.collect.ConstrainedBiMapTest(); testCase.testPutWithForbiddenKeyForbiddenValue(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class MultisetsTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testContainsOccurrences() throws Exception { com.google.common.collect.MultisetsTest testCase = new com.google.common.collect.MultisetsTest(); testCase.testContainsOccurrences(); } public void testContainsOccurrencesEmpty() throws Exception { com.google.common.collect.MultisetsTest testCase = new com.google.common.collect.MultisetsTest(); testCase.testContainsOccurrencesEmpty(); } public void testDifferenceEmptyNonempty() throws Exception { com.google.common.collect.MultisetsTest testCase = new com.google.common.collect.MultisetsTest(); testCase.testDifferenceEmptyNonempty(); } public void testDifferenceNonemptyEmpty() throws Exception { com.google.common.collect.MultisetsTest testCase = new com.google.common.collect.MultisetsTest(); testCase.testDifferenceNonemptyEmpty(); } public void testDifferenceWithMoreElementsInSecondMultiset() throws Exception { com.google.common.collect.MultisetsTest testCase = new com.google.common.collect.MultisetsTest(); testCase.testDifferenceWithMoreElementsInSecondMultiset(); } public void testDifferenceWithNoRemovedElements() throws Exception { com.google.common.collect.MultisetsTest testCase = new com.google.common.collect.MultisetsTest(); testCase.testDifferenceWithNoRemovedElements(); } public void testDifferenceWithRemovedElement() throws Exception { com.google.common.collect.MultisetsTest testCase = new com.google.common.collect.MultisetsTest(); testCase.testDifferenceWithRemovedElement(); } public void testHighestCountFirst() throws Exception { com.google.common.collect.MultisetsTest testCase = new com.google.common.collect.MultisetsTest(); testCase.testHighestCountFirst(); } public void testIntersectEmptyNonempty() throws Exception { com.google.common.collect.MultisetsTest testCase = new com.google.common.collect.MultisetsTest(); testCase.testIntersectEmptyNonempty(); } public void testIntersectNonemptyEmpty() throws Exception { com.google.common.collect.MultisetsTest testCase = new com.google.common.collect.MultisetsTest(); testCase.testIntersectNonemptyEmpty(); } public void testNewTreeMultisetComparator() throws Exception { com.google.common.collect.MultisetsTest testCase = new com.google.common.collect.MultisetsTest(); testCase.testNewTreeMultisetComparator(); } public void testNewTreeMultisetDerived() throws Exception { com.google.common.collect.MultisetsTest testCase = new com.google.common.collect.MultisetsTest(); testCase.testNewTreeMultisetDerived(); } public void testNewTreeMultisetNonGeneric() throws Exception { com.google.common.collect.MultisetsTest testCase = new com.google.common.collect.MultisetsTest(); testCase.testNewTreeMultisetNonGeneric(); } public void testRemoveEmptyOccurrences() throws Exception { com.google.common.collect.MultisetsTest testCase = new com.google.common.collect.MultisetsTest(); testCase.testRemoveEmptyOccurrences(); } public void testRemoveOccurrences() throws Exception { com.google.common.collect.MultisetsTest testCase = new com.google.common.collect.MultisetsTest(); testCase.testRemoveOccurrences(); } public void testRemoveOccurrencesEmpty() throws Exception { com.google.common.collect.MultisetsTest testCase = new com.google.common.collect.MultisetsTest(); testCase.testRemoveOccurrencesEmpty(); } public void testRetainEmptyOccurrences() throws Exception { com.google.common.collect.MultisetsTest testCase = new com.google.common.collect.MultisetsTest(); testCase.testRetainEmptyOccurrences(); } public void testRetainOccurrences() throws Exception { com.google.common.collect.MultisetsTest testCase = new com.google.common.collect.MultisetsTest(); testCase.testRetainOccurrences(); } public void testRetainOccurrencesEmpty() throws Exception { com.google.common.collect.MultisetsTest testCase = new com.google.common.collect.MultisetsTest(); testCase.testRetainOccurrencesEmpty(); } public void testSum() throws Exception { com.google.common.collect.MultisetsTest testCase = new com.google.common.collect.MultisetsTest(); testCase.testSum(); } public void testSumEmptyNonempty() throws Exception { com.google.common.collect.MultisetsTest testCase = new com.google.common.collect.MultisetsTest(); testCase.testSumEmptyNonempty(); } public void testSumNonemptyEmpty() throws Exception { com.google.common.collect.MultisetsTest testCase = new com.google.common.collect.MultisetsTest(); testCase.testSumNonemptyEmpty(); } public void testUnion() throws Exception { com.google.common.collect.MultisetsTest testCase = new com.google.common.collect.MultisetsTest(); testCase.testUnion(); } public void testUnionEmptyNonempty() throws Exception { com.google.common.collect.MultisetsTest testCase = new com.google.common.collect.MultisetsTest(); testCase.testUnionEmptyNonempty(); } public void testUnionEqualMultisets() throws Exception { com.google.common.collect.MultisetsTest testCase = new com.google.common.collect.MultisetsTest(); testCase.testUnionEqualMultisets(); } public void testUnionNonemptyEmpty() throws Exception { com.google.common.collect.MultisetsTest testCase = new com.google.common.collect.MultisetsTest(); testCase.testUnionNonemptyEmpty(); } public void testUnmodifiableMultisetShortCircuit() throws Exception { com.google.common.collect.MultisetsTest testCase = new com.google.common.collect.MultisetsTest(); testCase.testUnmodifiableMultisetShortCircuit(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class TreeMultimapExplicitTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testComparator() throws Exception { com.google.common.collect.TreeMultimapExplicitTest testCase = new com.google.common.collect.TreeMultimapExplicitTest(); testCase.testComparator(); } public void testGetComparator() throws Exception { com.google.common.collect.TreeMultimapExplicitTest testCase = new com.google.common.collect.TreeMultimapExplicitTest(); testCase.testGetComparator(); } public void testMultimapComparators() throws Exception { com.google.common.collect.TreeMultimapExplicitTest testCase = new com.google.common.collect.TreeMultimapExplicitTest(); testCase.testMultimapComparators(); } public void testMultimapCreateFromTreeMultimap() throws Exception { com.google.common.collect.TreeMultimapExplicitTest testCase = new com.google.common.collect.TreeMultimapExplicitTest(); testCase.testMultimapCreateFromTreeMultimap(); } public void testOrderedAsMapEntries() throws Exception { com.google.common.collect.TreeMultimapExplicitTest testCase = new com.google.common.collect.TreeMultimapExplicitTest(); testCase.testOrderedAsMapEntries(); } public void testOrderedEntries() throws Exception { com.google.common.collect.TreeMultimapExplicitTest testCase = new com.google.common.collect.TreeMultimapExplicitTest(); testCase.testOrderedEntries(); } public void testOrderedGet() throws Exception { com.google.common.collect.TreeMultimapExplicitTest testCase = new com.google.common.collect.TreeMultimapExplicitTest(); testCase.testOrderedGet(); } public void testOrderedKeySet() throws Exception { com.google.common.collect.TreeMultimapExplicitTest testCase = new com.google.common.collect.TreeMultimapExplicitTest(); testCase.testOrderedKeySet(); } public void testOrderedValues() throws Exception { com.google.common.collect.TreeMultimapExplicitTest testCase = new com.google.common.collect.TreeMultimapExplicitTest(); testCase.testOrderedValues(); } public void testSortedKeySet() throws Exception { com.google.common.collect.TreeMultimapExplicitTest testCase = new com.google.common.collect.TreeMultimapExplicitTest(); testCase.testSortedKeySet(); } public void testToString() throws Exception { com.google.common.collect.TreeMultimapExplicitTest testCase = new com.google.common.collect.TreeMultimapExplicitTest(); testCase.testToString(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class WellBehavedMapTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testEntriesAreMutableAndConsistent() throws Exception { com.google.common.collect.WellBehavedMapTest testCase = new com.google.common.collect.WellBehavedMapTest(); testCase.testEntriesAreMutableAndConsistent(); } public void testEntrySet_contain() throws Exception { com.google.common.collect.WellBehavedMapTest testCase = new com.google.common.collect.WellBehavedMapTest(); testCase.testEntrySet_contain(); } public void testEntrySet_remove() throws Exception { com.google.common.collect.WellBehavedMapTest testCase = new com.google.common.collect.WellBehavedMapTest(); testCase.testEntrySet_remove(); } public void testEntry_setValue() throws Exception { com.google.common.collect.WellBehavedMapTest testCase = new com.google.common.collect.WellBehavedMapTest(); testCase.testEntry_setValue(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class HashBiMapTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testBashIt() throws Exception { com.google.common.collect.HashBiMapTest testCase = new com.google.common.collect.HashBiMapTest(); testCase.testBashIt(); } public void testBiMapEntrySetIteratorRemove() throws Exception { com.google.common.collect.HashBiMapTest testCase = new com.google.common.collect.HashBiMapTest(); testCase.testBiMapEntrySetIteratorRemove(); } public void testMapConstructor() throws Exception { com.google.common.collect.HashBiMapTest testCase = new com.google.common.collect.HashBiMapTest(); testCase.testMapConstructor(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class ImmutableListMultimapTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testBuilderOrderKeysAndValuesBy() throws Exception { com.google.common.collect.ImmutableListMultimapTest testCase = new com.google.common.collect.ImmutableListMultimapTest(); testCase.testBuilderOrderKeysAndValuesBy(); } public void testBuilderOrderKeysBy() throws Exception { com.google.common.collect.ImmutableListMultimapTest testCase = new com.google.common.collect.ImmutableListMultimapTest(); testCase.testBuilderOrderKeysBy(); } public void testBuilderOrderKeysByDuplicates() throws Exception { com.google.common.collect.ImmutableListMultimapTest testCase = new com.google.common.collect.ImmutableListMultimapTest(); testCase.testBuilderOrderKeysByDuplicates(); } public void testBuilderOrderValuesBy() throws Exception { com.google.common.collect.ImmutableListMultimapTest testCase = new com.google.common.collect.ImmutableListMultimapTest(); testCase.testBuilderOrderValuesBy(); } public void testBuilderPutAllIterable() throws Exception { com.google.common.collect.ImmutableListMultimapTest testCase = new com.google.common.collect.ImmutableListMultimapTest(); testCase.testBuilderPutAllIterable(); } public void testBuilderPutAllMultimap() throws Exception { com.google.common.collect.ImmutableListMultimapTest testCase = new com.google.common.collect.ImmutableListMultimapTest(); testCase.testBuilderPutAllMultimap(); } public void testBuilderPutAllMultimapWithDuplicates() throws Exception { com.google.common.collect.ImmutableListMultimapTest testCase = new com.google.common.collect.ImmutableListMultimapTest(); testCase.testBuilderPutAllMultimapWithDuplicates(); } public void testBuilderPutAllVarargs() throws Exception { com.google.common.collect.ImmutableListMultimapTest testCase = new com.google.common.collect.ImmutableListMultimapTest(); testCase.testBuilderPutAllVarargs(); } public void testBuilderPutAllWithDuplicates() throws Exception { com.google.common.collect.ImmutableListMultimapTest testCase = new com.google.common.collect.ImmutableListMultimapTest(); testCase.testBuilderPutAllWithDuplicates(); } public void testBuilderPutNullKey() throws Exception { com.google.common.collect.ImmutableListMultimapTest testCase = new com.google.common.collect.ImmutableListMultimapTest(); testCase.testBuilderPutNullKey(); } public void testBuilderPutNullValue() throws Exception { com.google.common.collect.ImmutableListMultimapTest testCase = new com.google.common.collect.ImmutableListMultimapTest(); testCase.testBuilderPutNullValue(); } public void testBuilderPutWithDuplicates() throws Exception { com.google.common.collect.ImmutableListMultimapTest testCase = new com.google.common.collect.ImmutableListMultimapTest(); testCase.testBuilderPutWithDuplicates(); } public void testBuilder_withImmutableEntry() throws Exception { com.google.common.collect.ImmutableListMultimapTest testCase = new com.google.common.collect.ImmutableListMultimapTest(); testCase.testBuilder_withImmutableEntry(); } public void testBuilder_withImmutableEntryAndNullContents() throws Exception { com.google.common.collect.ImmutableListMultimapTest testCase = new com.google.common.collect.ImmutableListMultimapTest(); testCase.testBuilder_withImmutableEntryAndNullContents(); } public void testBuilder_withMutableEntry() throws Exception { com.google.common.collect.ImmutableListMultimapTest testCase = new com.google.common.collect.ImmutableListMultimapTest(); testCase.testBuilder_withMutableEntry(); } public void testCopyOf() throws Exception { com.google.common.collect.ImmutableListMultimapTest testCase = new com.google.common.collect.ImmutableListMultimapTest(); testCase.testCopyOf(); } public void testCopyOfEmpty() throws Exception { com.google.common.collect.ImmutableListMultimapTest testCase = new com.google.common.collect.ImmutableListMultimapTest(); testCase.testCopyOfEmpty(); } public void testCopyOfImmutableListMultimap() throws Exception { com.google.common.collect.ImmutableListMultimapTest testCase = new com.google.common.collect.ImmutableListMultimapTest(); testCase.testCopyOfImmutableListMultimap(); } public void testCopyOfNullKey() throws Exception { com.google.common.collect.ImmutableListMultimapTest testCase = new com.google.common.collect.ImmutableListMultimapTest(); testCase.testCopyOfNullKey(); } public void testCopyOfNullValue() throws Exception { com.google.common.collect.ImmutableListMultimapTest testCase = new com.google.common.collect.ImmutableListMultimapTest(); testCase.testCopyOfNullValue(); } public void testCopyOfWithDuplicates() throws Exception { com.google.common.collect.ImmutableListMultimapTest testCase = new com.google.common.collect.ImmutableListMultimapTest(); testCase.testCopyOfWithDuplicates(); } public void testEmptyMultimapReads() throws Exception { com.google.common.collect.ImmutableListMultimapTest testCase = new com.google.common.collect.ImmutableListMultimapTest(); testCase.testEmptyMultimapReads(); } public void testEmptyMultimapWrites() throws Exception { com.google.common.collect.ImmutableListMultimapTest testCase = new com.google.common.collect.ImmutableListMultimapTest(); testCase.testEmptyMultimapWrites(); } public void testInverse() throws Exception { com.google.common.collect.ImmutableListMultimapTest testCase = new com.google.common.collect.ImmutableListMultimapTest(); testCase.testInverse(); } public void testInverseMinimizesWork() throws Exception { com.google.common.collect.ImmutableListMultimapTest testCase = new com.google.common.collect.ImmutableListMultimapTest(); testCase.testInverseMinimizesWork(); } public void testMultimapEquals() throws Exception { com.google.common.collect.ImmutableListMultimapTest testCase = new com.google.common.collect.ImmutableListMultimapTest(); testCase.testMultimapEquals(); } public void testMultimapReads() throws Exception { com.google.common.collect.ImmutableListMultimapTest testCase = new com.google.common.collect.ImmutableListMultimapTest(); testCase.testMultimapReads(); } public void testMultimapWrites() throws Exception { com.google.common.collect.ImmutableListMultimapTest testCase = new com.google.common.collect.ImmutableListMultimapTest(); testCase.testMultimapWrites(); } public void testOf() throws Exception { com.google.common.collect.ImmutableListMultimapTest testCase = new com.google.common.collect.ImmutableListMultimapTest(); testCase.testOf(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class ComparisonChainTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testCompareBooleans() throws Exception { com.google.common.collect.ComparisonChainTest testCase = new com.google.common.collect.ComparisonChainTest(); testCase.testCompareBooleans(); } public void testCompareFalseFirst() throws Exception { com.google.common.collect.ComparisonChainTest testCase = new com.google.common.collect.ComparisonChainTest(); testCase.testCompareFalseFirst(); } public void testCompareTrueFirst() throws Exception { com.google.common.collect.ComparisonChainTest testCase = new com.google.common.collect.ComparisonChainTest(); testCase.testCompareTrueFirst(); } public void testDegenerate() throws Exception { com.google.common.collect.ComparisonChainTest testCase = new com.google.common.collect.ComparisonChainTest(); testCase.testDegenerate(); } public void testManyEqual() throws Exception { com.google.common.collect.ComparisonChainTest testCase = new com.google.common.collect.ComparisonChainTest(); testCase.testManyEqual(); } public void testOneEqual() throws Exception { com.google.common.collect.ComparisonChainTest testCase = new com.google.common.collect.ComparisonChainTest(); testCase.testOneEqual(); } public void testOneEqualUsingComparator() throws Exception { com.google.common.collect.ComparisonChainTest testCase = new com.google.common.collect.ComparisonChainTest(); testCase.testOneEqualUsingComparator(); } public void testShortCircuitGreater() throws Exception { com.google.common.collect.ComparisonChainTest testCase = new com.google.common.collect.ComparisonChainTest(); testCase.testShortCircuitGreater(); } public void testShortCircuitLess() throws Exception { com.google.common.collect.ComparisonChainTest testCase = new com.google.common.collect.ComparisonChainTest(); testCase.testShortCircuitLess(); } public void testShortCircuitSecondStep() throws Exception { com.google.common.collect.ComparisonChainTest testCase = new com.google.common.collect.ComparisonChainTest(); testCase.testShortCircuitSecondStep(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class ConstrainedMultimapAsMapImplementsMapTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testClear() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testClear(); } public void testContainsKey() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testContainsKey(); } public void testContainsValue() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testContainsValue(); } public void testEntrySet() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testEntrySet(); } public void testEntrySetAddAndAddAll() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testEntrySetAddAndAddAll(); } public void testEntrySetClear() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testEntrySetClear(); } public void testEntrySetContainsEntryIncompatibleKey() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testEntrySetContainsEntryIncompatibleKey(); } public void testEntrySetContainsEntryNullKeyMissing() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testEntrySetContainsEntryNullKeyMissing(); } public void testEntrySetContainsEntryNullKeyPresent() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testEntrySetContainsEntryNullKeyPresent(); } public void testEntrySetForEmptyMap() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testEntrySetForEmptyMap(); } public void testEntrySetIteratorRemove() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testEntrySetIteratorRemove(); } public void testEntrySetRemove() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testEntrySetRemove(); } public void testEntrySetRemoveAll() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testEntrySetRemoveAll(); } public void testEntrySetRemoveAllNullFromEmpty() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testEntrySetRemoveAllNullFromEmpty(); } public void testEntrySetRemoveDifferentValue() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testEntrySetRemoveDifferentValue(); } public void testEntrySetRemoveMissingKey() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testEntrySetRemoveMissingKey(); } public void testEntrySetRemoveNullKeyMissing() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testEntrySetRemoveNullKeyMissing(); } public void testEntrySetRemoveNullKeyPresent() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testEntrySetRemoveNullKeyPresent(); } public void testEntrySetRetainAll() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testEntrySetRetainAll(); } public void testEntrySetRetainAllNullFromEmpty() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testEntrySetRetainAllNullFromEmpty(); } public void testEntrySetSetValue() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testEntrySetSetValue(); } public void testEntrySetSetValueSameValue() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testEntrySetSetValueSameValue(); } public void testEqualsForEmptyMap() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testEqualsForEmptyMap(); } public void testEqualsForEqualMap() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testEqualsForEqualMap(); } public void testEqualsForLargerMap() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testEqualsForLargerMap(); } public void testEqualsForSmallerMap() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testEqualsForSmallerMap(); } public void testGet() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testGet(); } public void testGetForEmptyMap() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testGetForEmptyMap(); } public void testGetNull() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testGetNull(); } public void testHashCode() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testHashCode(); } public void testHashCodeForEmptyMap() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testHashCodeForEmptyMap(); } public void testKeySetClear() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testKeySetClear(); } public void testKeySetRemove() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testKeySetRemove(); } public void testKeySetRemoveAll() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testKeySetRemoveAll(); } public void testKeySetRemoveAllNullFromEmpty() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testKeySetRemoveAllNullFromEmpty(); } public void testKeySetRetainAll() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testKeySetRetainAll(); } public void testKeySetRetainAllNullFromEmpty() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testKeySetRetainAllNullFromEmpty(); } public void testPutAllExistingKey() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testPutAllExistingKey(); } public void testPutAllNewKey() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testPutAllNewKey(); } public void testPutExistingKey() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testPutExistingKey(); } public void testPutNewKey() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testPutNewKey(); } public void testPutNullKey() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testPutNullKey(); } public void testPutNullValue() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testPutNullValue(); } public void testPutNullValueForExistingKey() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testPutNullValueForExistingKey(); } public void testRemove() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testRemove(); } public void testRemoveMissingKey() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testRemoveMissingKey(); } public void testSize() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testSize(); } public void testValues() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testValues(); } public void testValuesClear() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testValuesClear(); } public void testValuesIteratorRemove() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testValuesIteratorRemove(); } public void testValuesRemove() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testValuesRemove(); } public void testValuesRemoveAll() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testValuesRemoveAll(); } public void testValuesRemoveAllNullFromEmpty() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testValuesRemoveAllNullFromEmpty(); } public void testValuesRemoveMissing() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testValuesRemoveMissing(); } public void testValuesRetainAll() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testValuesRetainAll(); } public void testValuesRetainAllNullFromEmpty() throws Exception { com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMultimapAsMapImplementsMapTest(); testCase.testValuesRetainAllNullFromEmpty(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class AbstractIteratorTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testCantRemove() throws Exception { com.google.common.collect.AbstractIteratorTest testCase = new com.google.common.collect.AbstractIteratorTest(); testCase.testCantRemove(); } public void testDefaultBehaviorOfNextAndHasNext() throws Exception { com.google.common.collect.AbstractIteratorTest testCase = new com.google.common.collect.AbstractIteratorTest(); testCase.testDefaultBehaviorOfNextAndHasNext(); } public void testDefaultBehaviorOfPeek() throws Exception { com.google.common.collect.AbstractIteratorTest testCase = new com.google.common.collect.AbstractIteratorTest(); testCase.testDefaultBehaviorOfPeek(); } public void testDefaultBehaviorOfPeekForEmptyIteration() throws Exception { com.google.common.collect.AbstractIteratorTest testCase = new com.google.common.collect.AbstractIteratorTest(); testCase.testDefaultBehaviorOfPeekForEmptyIteration(); } public void testException() throws Exception { com.google.common.collect.AbstractIteratorTest testCase = new com.google.common.collect.AbstractIteratorTest(); testCase.testException(); } public void testExceptionAfterEndOfData() throws Exception { com.google.common.collect.AbstractIteratorTest testCase = new com.google.common.collect.AbstractIteratorTest(); testCase.testExceptionAfterEndOfData(); } public void testReentrantHasNext() throws Exception { com.google.common.collect.AbstractIteratorTest testCase = new com.google.common.collect.AbstractIteratorTest(); testCase.testReentrantHasNext(); } public void testSneakyThrow() throws Exception { com.google.common.collect.AbstractIteratorTest testCase = new com.google.common.collect.AbstractIteratorTest(); testCase.testSneakyThrow(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class SortedIterablesTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testComparator() throws Exception { com.google.common.collect.SortedIterablesTest testCase = new com.google.common.collect.SortedIterablesTest(); testCase.testComparator(); } public void testSameComparator() throws Exception { com.google.common.collect.SortedIterablesTest testCase = new com.google.common.collect.SortedIterablesTest(); testCase.testSameComparator(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class ArrayTableTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testAt() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testAt(); } public void testCellReflectsChanges() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testCellReflectsChanges(); } public void testCellSetToString_ordered() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testCellSetToString_ordered(); } public void testClear() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testClear(); } public void testColumn() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testColumn(); } public void testColumnKeyList() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testColumnKeyList(); } public void testColumnKeySetToString_ordered() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testColumnKeySetToString_ordered(); } public void testColumnMissing() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testColumnMissing(); } public void testColumnNull() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testColumnNull(); } public void testColumnPutIllegal() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testColumnPutIllegal(); } public void testColumnSetPartialOverlap() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testColumnSetPartialOverlap(); } public void testContains() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testContains(); } public void testContainsColumn() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testContainsColumn(); } public void testContainsRow() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testContainsRow(); } public void testContainsValue() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testContainsValue(); } public void testCreateCopyArrayTable() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testCreateCopyArrayTable(); } public void testCreateCopyEmptyTable() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testCreateCopyEmptyTable(); } public void testCreateCopyHashBasedTable() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testCreateCopyHashBasedTable(); } public void testCreateDuplicateColumns() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testCreateDuplicateColumns(); } public void testCreateDuplicateRows() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testCreateDuplicateRows(); } public void testCreateEmptyColumns() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testCreateEmptyColumns(); } public void testCreateEmptyRows() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testCreateEmptyRows(); } public void testEquals() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testEquals(); } public void testErase() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testErase(); } public void testEraseAll() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testEraseAll(); } public void testGet() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testGet(); } public void testGetMissingKeys() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testGetMissingKeys(); } public void testHashCode() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testHashCode(); } public void testIsEmpty() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testIsEmpty(); } public void testPut() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testPut(); } public void testPutAllTable() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testPutAllTable(); } public void testPutIllegal() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testPutIllegal(); } public void testPutNull() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testPutNull(); } public void testPutNullReplace() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testPutNullReplace(); } public void testRemove() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testRemove(); } public void testRow() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testRow(); } public void testRowClearAndPut() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testRowClearAndPut(); } public void testRowKeyList() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testRowKeyList(); } public void testRowKeySetToString_ordered() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testRowKeySetToString_ordered(); } public void testRowMissing() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testRowMissing(); } public void testRowNull() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testRowNull(); } public void testRowPutIllegal() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testRowPutIllegal(); } public void testSerialization() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testSerialization(); } public void testSet() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testSet(); } public void testSize() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testSize(); } public void testToStringSize1() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testToStringSize1(); } public void testToString_ordered() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testToString_ordered(); } public void testValuesToString_ordered() throws Exception { com.google.common.collect.ArrayTableTest testCase = new com.google.common.collect.ArrayTableTest(); testCase.setUp(); testCase.testValuesToString_ordered(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class ConstrainedMapImplementsMapTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testClear() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testClear(); } public void testContainsKey() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testContainsKey(); } public void testContainsValue() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testContainsValue(); } public void testEntrySet() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testEntrySet(); } public void testEntrySetAddAndAddAll() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testEntrySetAddAndAddAll(); } public void testEntrySetClear() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testEntrySetClear(); } public void testEntrySetContainsEntryIncompatibleKey() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testEntrySetContainsEntryIncompatibleKey(); } public void testEntrySetContainsEntryNullKeyMissing() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testEntrySetContainsEntryNullKeyMissing(); } public void testEntrySetContainsEntryNullKeyPresent() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testEntrySetContainsEntryNullKeyPresent(); } public void testEntrySetForEmptyMap() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testEntrySetForEmptyMap(); } public void testEntrySetIteratorRemove() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testEntrySetIteratorRemove(); } public void testEntrySetRemove() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testEntrySetRemove(); } public void testEntrySetRemoveAll() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testEntrySetRemoveAll(); } public void testEntrySetRemoveAllNullFromEmpty() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testEntrySetRemoveAllNullFromEmpty(); } public void testEntrySetRemoveDifferentValue() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testEntrySetRemoveDifferentValue(); } public void testEntrySetRemoveMissingKey() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testEntrySetRemoveMissingKey(); } public void testEntrySetRemoveNullKeyMissing() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testEntrySetRemoveNullKeyMissing(); } public void testEntrySetRemoveNullKeyPresent() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testEntrySetRemoveNullKeyPresent(); } public void testEntrySetRetainAll() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testEntrySetRetainAll(); } public void testEntrySetRetainAllNullFromEmpty() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testEntrySetRetainAllNullFromEmpty(); } public void testEntrySetSetValue() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testEntrySetSetValue(); } public void testEntrySetSetValueSameValue() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testEntrySetSetValueSameValue(); } public void testEqualsForEmptyMap() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testEqualsForEmptyMap(); } public void testEqualsForEqualMap() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testEqualsForEqualMap(); } public void testEqualsForLargerMap() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testEqualsForLargerMap(); } public void testEqualsForSmallerMap() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testEqualsForSmallerMap(); } public void testGet() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testGet(); } public void testGetForEmptyMap() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testGetForEmptyMap(); } public void testGetNull() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testGetNull(); } public void testHashCode() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testHashCode(); } public void testHashCodeForEmptyMap() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testHashCodeForEmptyMap(); } public void testKeySetClear() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testKeySetClear(); } public void testKeySetRemove() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testKeySetRemove(); } public void testKeySetRemoveAll() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testKeySetRemoveAll(); } public void testKeySetRemoveAllNullFromEmpty() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testKeySetRemoveAllNullFromEmpty(); } public void testKeySetRetainAll() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testKeySetRetainAll(); } public void testKeySetRetainAllNullFromEmpty() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testKeySetRetainAllNullFromEmpty(); } public void testPutAllExistingKey() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testPutAllExistingKey(); } public void testPutAllNewKey() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testPutAllNewKey(); } public void testPutExistingKey() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testPutExistingKey(); } public void testPutNewKey() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testPutNewKey(); } public void testPutNullKey() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testPutNullKey(); } public void testPutNullValue() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testPutNullValue(); } public void testPutNullValueForExistingKey() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testPutNullValueForExistingKey(); } public void testRemove() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testRemove(); } public void testRemoveMissingKey() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testRemoveMissingKey(); } public void testSize() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testSize(); } public void testValues() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testValues(); } public void testValuesClear() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testValuesClear(); } public void testValuesIteratorRemove() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testValuesIteratorRemove(); } public void testValuesRemove() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testValuesRemove(); } public void testValuesRemoveAll() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testValuesRemoveAll(); } public void testValuesRemoveAllNullFromEmpty() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testValuesRemoveAllNullFromEmpty(); } public void testValuesRemoveMissing() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testValuesRemoveMissing(); } public void testValuesRetainAll() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testValuesRetainAll(); } public void testValuesRetainAllNullFromEmpty() throws Exception { com.google.common.collect.ConstrainedMapImplementsMapTest testCase = new com.google.common.collect.ConstrainedMapImplementsMapTest(); testCase.testValuesRetainAllNullFromEmpty(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class SetOperationsTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testDifference__MoreTests() throws Exception { com.google.common.collect.SetOperationsTest.MoreTests testCase = new com.google.common.collect.SetOperationsTest.MoreTests(); testCase.setUp(); testCase.testDifference(); } public void testIntersection__MoreTests() throws Exception { com.google.common.collect.SetOperationsTest.MoreTests testCase = new com.google.common.collect.SetOperationsTest.MoreTests(); testCase.setUp(); testCase.testIntersection(); } public void testSymmetricDifference__MoreTests() throws Exception { com.google.common.collect.SetOperationsTest.MoreTests testCase = new com.google.common.collect.SetOperationsTest.MoreTests(); testCase.setUp(); testCase.testSymmetricDifference(); } public void testUnion__MoreTests() throws Exception { com.google.common.collect.SetOperationsTest.MoreTests testCase = new com.google.common.collect.SetOperationsTest.MoreTests(); testCase.setUp(); testCase.testUnion(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class OrderingTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testAllEqual() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testAllEqual(); } public void testArbitrary_withCollisions() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testArbitrary_withCollisions(); } public void testArbitrary_withoutCollisions() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testArbitrary_withoutCollisions(); } public void testBinarySearch() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testBinarySearch(); } public void testCombinationsExhaustively_startingFromNatural() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testCombinationsExhaustively_startingFromNatural(); } public void testCompound_instance() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testCompound_instance(); } public void testCompound_instance_generics() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testCompound_instance_generics(); } public void testCompound_static() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testCompound_static(); } public void testExplicit_none() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testExplicit_none(); } public void testExplicit_one() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testExplicit_one(); } public void testExplicit_sortingExample() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testExplicit_sortingExample(); } public void testExplicit_two() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testExplicit_two(); } public void testExplicit_withDuplicates() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testExplicit_withDuplicates(); } public void testFrom() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testFrom(); } public void testGreatestOfIterable_simple() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testGreatestOfIterable_simple(); } public void testGreatestOfIterator_simple() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testGreatestOfIterator_simple(); } public void testImmutableSortedCopy() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testImmutableSortedCopy(); } public void testIsOrdered() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testIsOrdered(); } public void testIsStrictlyOrdered() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testIsStrictlyOrdered(); } public void testIterableMinAndMax() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testIterableMinAndMax(); } public void testIteratorMaxExhaustsIterator() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testIteratorMaxExhaustsIterator(); } public void testIteratorMinAndMax() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testIteratorMinAndMax(); } public void testIteratorMinExhaustsIterator() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testIteratorMinExhaustsIterator(); } public void testLeastOfIterableLargeK() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testLeastOfIterableLargeK(); } public void testLeastOfIterable_empty_0() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testLeastOfIterable_empty_0(); } public void testLeastOfIterable_empty_1() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testLeastOfIterable_empty_1(); } public void testLeastOfIterable_simple_0() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testLeastOfIterable_simple_0(); } public void testLeastOfIterable_simple_1() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testLeastOfIterable_simple_1(); } public void testLeastOfIterable_simple_n() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testLeastOfIterable_simple_n(); } public void testLeastOfIterable_simple_nMinusOne() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testLeastOfIterable_simple_nMinusOne(); } public void testLeastOfIterable_simple_nMinusOne_withNullElement() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testLeastOfIterable_simple_nMinusOne_withNullElement(); } public void testLeastOfIterable_simple_nPlusOne() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testLeastOfIterable_simple_nPlusOne(); } public void testLeastOfIterable_simple_n_withNullElement() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testLeastOfIterable_simple_n_withNullElement(); } public void testLeastOfIterable_simple_negativeOne() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testLeastOfIterable_simple_negativeOne(); } public void testLeastOfIterable_singleton_0() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testLeastOfIterable_singleton_0(); } public void testLeastOfIterable_ties() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testLeastOfIterable_ties(); } public void testLeastOfIteratorLargeK() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testLeastOfIteratorLargeK(); } public void testLeastOfIterator_empty_0() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testLeastOfIterator_empty_0(); } public void testLeastOfIterator_empty_1() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testLeastOfIterator_empty_1(); } public void testLeastOfIterator_simple_0() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testLeastOfIterator_simple_0(); } public void testLeastOfIterator_simple_1() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testLeastOfIterator_simple_1(); } public void testLeastOfIterator_simple_n() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testLeastOfIterator_simple_n(); } public void testLeastOfIterator_simple_nMinusOne() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testLeastOfIterator_simple_nMinusOne(); } public void testLeastOfIterator_simple_nMinusOne_withNullElement() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testLeastOfIterator_simple_nMinusOne_withNullElement(); } public void testLeastOfIterator_simple_nPlusOne() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testLeastOfIterator_simple_nPlusOne(); } public void testLeastOfIterator_simple_n_withNullElement() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testLeastOfIterator_simple_n_withNullElement(); } public void testLeastOfIterator_simple_negativeOne() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testLeastOfIterator_simple_negativeOne(); } public void testLeastOfIterator_singleton_0() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testLeastOfIterator_singleton_0(); } public void testLeastOfIterator_ties() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testLeastOfIterator_ties(); } public void testLeastOf_reconcileAgainstSortAndSublistSmall() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testLeastOf_reconcileAgainstSortAndSublistSmall(); } public void testLexicographical() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testLexicographical(); } public void testNatural() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testNatural(); } public void testNullsFirst() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testNullsFirst(); } public void testNullsLast() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testNullsLast(); } public void testOnResultOf_chained() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testOnResultOf_chained(); } public void testOnResultOf_natural() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testOnResultOf_natural(); } public void testParameterMinAndMax() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testParameterMinAndMax(); } public void testReverse() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testReverse(); } public void testReverseOfReverseSameAsForward() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testReverseOfReverseSameAsForward(); } public void testSortedCopy() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testSortedCopy(); } public void testUsingToString() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testUsingToString(); } public void testVarargsMinAndMax() throws Exception { com.google.common.collect.OrderingTest testCase = new com.google.common.collect.OrderingTest(); testCase.testVarargsMinAndMax(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class SortedListsTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testWithDups() throws Exception { com.google.common.collect.SortedListsTest testCase = new com.google.common.collect.SortedListsTest(); testCase.testWithDups(); } public void testWithoutDups() throws Exception { com.google.common.collect.SortedListsTest testCase = new com.google.common.collect.SortedListsTest(); testCase.testWithoutDups(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class SingletonImmutableTableTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testCellSet() throws Exception { com.google.common.collect.SingletonImmutableTableTest testCase = new com.google.common.collect.SingletonImmutableTableTest(); testCase.testCellSet(); } public void testClear() throws Exception { com.google.common.collect.SingletonImmutableTableTest testCase = new com.google.common.collect.SingletonImmutableTableTest(); testCase.testClear(); } public void testColumn() throws Exception { com.google.common.collect.SingletonImmutableTableTest testCase = new com.google.common.collect.SingletonImmutableTableTest(); testCase.testColumn(); } public void testColumnKeySet() throws Exception { com.google.common.collect.SingletonImmutableTableTest testCase = new com.google.common.collect.SingletonImmutableTableTest(); testCase.testColumnKeySet(); } public void testColumnMap() throws Exception { com.google.common.collect.SingletonImmutableTableTest testCase = new com.google.common.collect.SingletonImmutableTableTest(); testCase.testColumnMap(); } public void testConsistentHashCode() throws Exception { com.google.common.collect.SingletonImmutableTableTest testCase = new com.google.common.collect.SingletonImmutableTableTest(); testCase.testConsistentHashCode(); } public void testConsistentToString() throws Exception { com.google.common.collect.SingletonImmutableTableTest testCase = new com.google.common.collect.SingletonImmutableTableTest(); testCase.testConsistentToString(); } public void testContains() throws Exception { com.google.common.collect.SingletonImmutableTableTest testCase = new com.google.common.collect.SingletonImmutableTableTest(); testCase.testContains(); } public void testContainsColumn() throws Exception { com.google.common.collect.SingletonImmutableTableTest testCase = new com.google.common.collect.SingletonImmutableTableTest(); testCase.testContainsColumn(); } public void testContainsRow() throws Exception { com.google.common.collect.SingletonImmutableTableTest testCase = new com.google.common.collect.SingletonImmutableTableTest(); testCase.testContainsRow(); } public void testContainsValue() throws Exception { com.google.common.collect.SingletonImmutableTableTest testCase = new com.google.common.collect.SingletonImmutableTableTest(); testCase.testContainsValue(); } public void testEqualsObject() throws Exception { com.google.common.collect.SingletonImmutableTableTest testCase = new com.google.common.collect.SingletonImmutableTableTest(); testCase.testEqualsObject(); } public void testGet() throws Exception { com.google.common.collect.SingletonImmutableTableTest testCase = new com.google.common.collect.SingletonImmutableTableTest(); testCase.testGet(); } public void testHashCode() throws Exception { com.google.common.collect.SingletonImmutableTableTest testCase = new com.google.common.collect.SingletonImmutableTableTest(); testCase.testHashCode(); } public void testIsEmpty() throws Exception { com.google.common.collect.SingletonImmutableTableTest testCase = new com.google.common.collect.SingletonImmutableTableTest(); testCase.testIsEmpty(); } public void testPut() throws Exception { com.google.common.collect.SingletonImmutableTableTest testCase = new com.google.common.collect.SingletonImmutableTableTest(); testCase.testPut(); } public void testPutAll() throws Exception { com.google.common.collect.SingletonImmutableTableTest testCase = new com.google.common.collect.SingletonImmutableTableTest(); testCase.testPutAll(); } public void testRemove() throws Exception { com.google.common.collect.SingletonImmutableTableTest testCase = new com.google.common.collect.SingletonImmutableTableTest(); testCase.testRemove(); } public void testRow() throws Exception { com.google.common.collect.SingletonImmutableTableTest testCase = new com.google.common.collect.SingletonImmutableTableTest(); testCase.testRow(); } public void testRowKeySet() throws Exception { com.google.common.collect.SingletonImmutableTableTest testCase = new com.google.common.collect.SingletonImmutableTableTest(); testCase.testRowKeySet(); } public void testRowMap() throws Exception { com.google.common.collect.SingletonImmutableTableTest testCase = new com.google.common.collect.SingletonImmutableTableTest(); testCase.testRowMap(); } public void testSize() throws Exception { com.google.common.collect.SingletonImmutableTableTest testCase = new com.google.common.collect.SingletonImmutableTableTest(); testCase.testSize(); } public void testToString() throws Exception { com.google.common.collect.SingletonImmutableTableTest testCase = new com.google.common.collect.SingletonImmutableTableTest(); testCase.testToString(); } public void testValues() throws Exception { com.google.common.collect.SingletonImmutableTableTest testCase = new com.google.common.collect.SingletonImmutableTableTest(); testCase.testValues(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class ImmutableSetMultimapTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testBuilderOrderKeysAndValuesBy() throws Exception { com.google.common.collect.ImmutableSetMultimapTest testCase = new com.google.common.collect.ImmutableSetMultimapTest(); testCase.testBuilderOrderKeysAndValuesBy(); } public void testBuilderOrderKeysBy() throws Exception { com.google.common.collect.ImmutableSetMultimapTest testCase = new com.google.common.collect.ImmutableSetMultimapTest(); testCase.testBuilderOrderKeysBy(); } public void testBuilderOrderKeysByDuplicates() throws Exception { com.google.common.collect.ImmutableSetMultimapTest testCase = new com.google.common.collect.ImmutableSetMultimapTest(); testCase.testBuilderOrderKeysByDuplicates(); } public void testBuilderOrderValuesBy() throws Exception { com.google.common.collect.ImmutableSetMultimapTest testCase = new com.google.common.collect.ImmutableSetMultimapTest(); testCase.testBuilderOrderValuesBy(); } public void testBuilderPutAllIterable() throws Exception { com.google.common.collect.ImmutableSetMultimapTest testCase = new com.google.common.collect.ImmutableSetMultimapTest(); testCase.testBuilderPutAllIterable(); } public void testBuilderPutAllMultimap() throws Exception { com.google.common.collect.ImmutableSetMultimapTest testCase = new com.google.common.collect.ImmutableSetMultimapTest(); testCase.testBuilderPutAllMultimap(); } public void testBuilderPutAllMultimapWithDuplicates() throws Exception { com.google.common.collect.ImmutableSetMultimapTest testCase = new com.google.common.collect.ImmutableSetMultimapTest(); testCase.testBuilderPutAllMultimapWithDuplicates(); } public void testBuilderPutAllVarargs() throws Exception { com.google.common.collect.ImmutableSetMultimapTest testCase = new com.google.common.collect.ImmutableSetMultimapTest(); testCase.testBuilderPutAllVarargs(); } public void testBuilderPutAllWithDuplicates() throws Exception { com.google.common.collect.ImmutableSetMultimapTest testCase = new com.google.common.collect.ImmutableSetMultimapTest(); testCase.testBuilderPutAllWithDuplicates(); } public void testBuilderPutNullKey() throws Exception { com.google.common.collect.ImmutableSetMultimapTest testCase = new com.google.common.collect.ImmutableSetMultimapTest(); testCase.testBuilderPutNullKey(); } public void testBuilderPutNullValue() throws Exception { com.google.common.collect.ImmutableSetMultimapTest testCase = new com.google.common.collect.ImmutableSetMultimapTest(); testCase.testBuilderPutNullValue(); } public void testBuilderPutWithDuplicates() throws Exception { com.google.common.collect.ImmutableSetMultimapTest testCase = new com.google.common.collect.ImmutableSetMultimapTest(); testCase.testBuilderPutWithDuplicates(); } public void testBuilder_withImmutableEntry() throws Exception { com.google.common.collect.ImmutableSetMultimapTest testCase = new com.google.common.collect.ImmutableSetMultimapTest(); testCase.testBuilder_withImmutableEntry(); } public void testBuilder_withImmutableEntryAndNullContents() throws Exception { com.google.common.collect.ImmutableSetMultimapTest testCase = new com.google.common.collect.ImmutableSetMultimapTest(); testCase.testBuilder_withImmutableEntryAndNullContents(); } public void testBuilder_withMutableEntry() throws Exception { com.google.common.collect.ImmutableSetMultimapTest testCase = new com.google.common.collect.ImmutableSetMultimapTest(); testCase.testBuilder_withMutableEntry(); } public void testCopyOf() throws Exception { com.google.common.collect.ImmutableSetMultimapTest testCase = new com.google.common.collect.ImmutableSetMultimapTest(); testCase.testCopyOf(); } public void testCopyOfEmpty() throws Exception { com.google.common.collect.ImmutableSetMultimapTest testCase = new com.google.common.collect.ImmutableSetMultimapTest(); testCase.testCopyOfEmpty(); } public void testCopyOfImmutableSetMultimap() throws Exception { com.google.common.collect.ImmutableSetMultimapTest testCase = new com.google.common.collect.ImmutableSetMultimapTest(); testCase.testCopyOfImmutableSetMultimap(); } public void testCopyOfNullKey() throws Exception { com.google.common.collect.ImmutableSetMultimapTest testCase = new com.google.common.collect.ImmutableSetMultimapTest(); testCase.testCopyOfNullKey(); } public void testCopyOfNullValue() throws Exception { com.google.common.collect.ImmutableSetMultimapTest testCase = new com.google.common.collect.ImmutableSetMultimapTest(); testCase.testCopyOfNullValue(); } public void testCopyOfWithDuplicates() throws Exception { com.google.common.collect.ImmutableSetMultimapTest testCase = new com.google.common.collect.ImmutableSetMultimapTest(); testCase.testCopyOfWithDuplicates(); } public void testEmptyMultimapReads() throws Exception { com.google.common.collect.ImmutableSetMultimapTest testCase = new com.google.common.collect.ImmutableSetMultimapTest(); testCase.testEmptyMultimapReads(); } public void testEmptyMultimapWrites() throws Exception { com.google.common.collect.ImmutableSetMultimapTest testCase = new com.google.common.collect.ImmutableSetMultimapTest(); testCase.testEmptyMultimapWrites(); } public void testInverse() throws Exception { com.google.common.collect.ImmutableSetMultimapTest testCase = new com.google.common.collect.ImmutableSetMultimapTest(); testCase.testInverse(); } public void testInverseMinimizesWork() throws Exception { com.google.common.collect.ImmutableSetMultimapTest testCase = new com.google.common.collect.ImmutableSetMultimapTest(); testCase.testInverseMinimizesWork(); } public void testMultimapEquals() throws Exception { com.google.common.collect.ImmutableSetMultimapTest testCase = new com.google.common.collect.ImmutableSetMultimapTest(); testCase.testMultimapEquals(); } public void testMultimapReads() throws Exception { com.google.common.collect.ImmutableSetMultimapTest testCase = new com.google.common.collect.ImmutableSetMultimapTest(); testCase.testMultimapReads(); } public void testMultimapWrites() throws Exception { com.google.common.collect.ImmutableSetMultimapTest testCase = new com.google.common.collect.ImmutableSetMultimapTest(); testCase.testMultimapWrites(); } public void testOf() throws Exception { com.google.common.collect.ImmutableSetMultimapTest testCase = new com.google.common.collect.ImmutableSetMultimapTest(); testCase.testOf(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class HashBasedTableTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testClear() throws Exception { com.google.common.collect.HashBasedTableTest testCase = new com.google.common.collect.HashBasedTableTest(); testCase.setUp(); testCase.testClear(); } public void testColumn() throws Exception { com.google.common.collect.HashBasedTableTest testCase = new com.google.common.collect.HashBasedTableTest(); testCase.setUp(); testCase.testColumn(); } public void testColumnNull() throws Exception { com.google.common.collect.HashBasedTableTest testCase = new com.google.common.collect.HashBasedTableTest(); testCase.setUp(); testCase.testColumnNull(); } public void testColumnSetPartialOverlap() throws Exception { com.google.common.collect.HashBasedTableTest testCase = new com.google.common.collect.HashBasedTableTest(); testCase.setUp(); testCase.testColumnSetPartialOverlap(); } public void testContains() throws Exception { com.google.common.collect.HashBasedTableTest testCase = new com.google.common.collect.HashBasedTableTest(); testCase.setUp(); testCase.testContains(); } public void testContainsColumn() throws Exception { com.google.common.collect.HashBasedTableTest testCase = new com.google.common.collect.HashBasedTableTest(); testCase.setUp(); testCase.testContainsColumn(); } public void testContainsRow() throws Exception { com.google.common.collect.HashBasedTableTest testCase = new com.google.common.collect.HashBasedTableTest(); testCase.setUp(); testCase.testContainsRow(); } public void testContainsValue() throws Exception { com.google.common.collect.HashBasedTableTest testCase = new com.google.common.collect.HashBasedTableTest(); testCase.setUp(); testCase.testContainsValue(); } public void testCreateCopy() throws Exception { com.google.common.collect.HashBasedTableTest testCase = new com.google.common.collect.HashBasedTableTest(); testCase.setUp(); testCase.testCreateCopy(); } public void testCreateWithInvalidSizes() throws Exception { com.google.common.collect.HashBasedTableTest testCase = new com.google.common.collect.HashBasedTableTest(); testCase.setUp(); testCase.testCreateWithInvalidSizes(); } public void testCreateWithValidSizes() throws Exception { com.google.common.collect.HashBasedTableTest testCase = new com.google.common.collect.HashBasedTableTest(); testCase.setUp(); testCase.testCreateWithValidSizes(); } public void testEquals() throws Exception { com.google.common.collect.HashBasedTableTest testCase = new com.google.common.collect.HashBasedTableTest(); testCase.setUp(); testCase.testEquals(); } public void testGet() throws Exception { com.google.common.collect.HashBasedTableTest testCase = new com.google.common.collect.HashBasedTableTest(); testCase.setUp(); testCase.testGet(); } public void testHashCode() throws Exception { com.google.common.collect.HashBasedTableTest testCase = new com.google.common.collect.HashBasedTableTest(); testCase.setUp(); testCase.testHashCode(); } public void testIsEmpty() throws Exception { com.google.common.collect.HashBasedTableTest testCase = new com.google.common.collect.HashBasedTableTest(); testCase.setUp(); testCase.testIsEmpty(); } public void testPut() throws Exception { com.google.common.collect.HashBasedTableTest testCase = new com.google.common.collect.HashBasedTableTest(); testCase.setUp(); testCase.testPut(); } public void testPutAllTable() throws Exception { com.google.common.collect.HashBasedTableTest testCase = new com.google.common.collect.HashBasedTableTest(); testCase.setUp(); testCase.testPutAllTable(); } public void testPutNull() throws Exception { com.google.common.collect.HashBasedTableTest testCase = new com.google.common.collect.HashBasedTableTest(); testCase.setUp(); testCase.testPutNull(); } public void testPutNullReplace() throws Exception { com.google.common.collect.HashBasedTableTest testCase = new com.google.common.collect.HashBasedTableTest(); testCase.setUp(); testCase.testPutNullReplace(); } public void testRemove() throws Exception { com.google.common.collect.HashBasedTableTest testCase = new com.google.common.collect.HashBasedTableTest(); testCase.setUp(); testCase.testRemove(); } public void testRow() throws Exception { com.google.common.collect.HashBasedTableTest testCase = new com.google.common.collect.HashBasedTableTest(); testCase.setUp(); testCase.testRow(); } public void testRowClearAndPut() throws Exception { com.google.common.collect.HashBasedTableTest testCase = new com.google.common.collect.HashBasedTableTest(); testCase.setUp(); testCase.testRowClearAndPut(); } public void testRowNull() throws Exception { com.google.common.collect.HashBasedTableTest testCase = new com.google.common.collect.HashBasedTableTest(); testCase.setUp(); testCase.testRowNull(); } public void testSize() throws Exception { com.google.common.collect.HashBasedTableTest testCase = new com.google.common.collect.HashBasedTableTest(); testCase.setUp(); testCase.testSize(); } public void testToStringSize1() throws Exception { com.google.common.collect.HashBasedTableTest testCase = new com.google.common.collect.HashBasedTableTest(); testCase.setUp(); testCase.testToStringSize1(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class MultisetsImmutableEntryTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testEquals() throws Exception { com.google.common.collect.MultisetsImmutableEntryTest testCase = new com.google.common.collect.MultisetsImmutableEntryTest(); testCase.testEquals(); } public void testEqualsNull() throws Exception { com.google.common.collect.MultisetsImmutableEntryTest testCase = new com.google.common.collect.MultisetsImmutableEntryTest(); testCase.testEqualsNull(); } public void testHashCode() throws Exception { com.google.common.collect.MultisetsImmutableEntryTest testCase = new com.google.common.collect.MultisetsImmutableEntryTest(); testCase.testHashCode(); } public void testHashCodeNull() throws Exception { com.google.common.collect.MultisetsImmutableEntryTest testCase = new com.google.common.collect.MultisetsImmutableEntryTest(); testCase.testHashCodeNull(); } public void testNegativeCount() throws Exception { com.google.common.collect.MultisetsImmutableEntryTest testCase = new com.google.common.collect.MultisetsImmutableEntryTest(); testCase.testNegativeCount(); } public void testToString() throws Exception { com.google.common.collect.MultisetsImmutableEntryTest testCase = new com.google.common.collect.MultisetsImmutableEntryTest(); testCase.testToString(); } public void testToStringNull() throws Exception { com.google.common.collect.MultisetsImmutableEntryTest testCase = new com.google.common.collect.MultisetsImmutableEntryTest(); testCase.testToStringNull(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class EnumHashBiMapTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testCreate() throws Exception { com.google.common.collect.EnumHashBiMapTest testCase = new com.google.common.collect.EnumHashBiMapTest(); testCase.testCreate(); } public void testCreateFromMap() throws Exception { com.google.common.collect.EnumHashBiMapTest testCase = new com.google.common.collect.EnumHashBiMapTest(); testCase.testCreateFromMap(); } public void testEntrySet() throws Exception { com.google.common.collect.EnumHashBiMapTest testCase = new com.google.common.collect.EnumHashBiMapTest(); testCase.testEntrySet(); } public void testEnumBiMapConstructor() throws Exception { com.google.common.collect.EnumHashBiMapTest testCase = new com.google.common.collect.EnumHashBiMapTest(); testCase.testEnumBiMapConstructor(); } public void testEnumHashBiMapConstructor() throws Exception { com.google.common.collect.EnumHashBiMapTest testCase = new com.google.common.collect.EnumHashBiMapTest(); testCase.testEnumHashBiMapConstructor(); } public void testKeyType() throws Exception { com.google.common.collect.EnumHashBiMapTest testCase = new com.google.common.collect.EnumHashBiMapTest(); testCase.testKeyType(); } }
Java
/* * Copyright (C) 2008 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; public class ImmutableEnumMapTest_gwt extends com.google.gwt.junit.client.GWTTestCase { @Override public String getModuleName() { return "com.google.common.collect.testModule"; } public void testEmptyImmutableEnumMap() throws Exception { com.google.common.collect.ImmutableEnumMapTest testCase = new com.google.common.collect.ImmutableEnumMapTest(); testCase.testEmptyImmutableEnumMap(); } public void testImmutableEnumMapOrdering() throws Exception { com.google.common.collect.ImmutableEnumMapTest testCase = new com.google.common.collect.ImmutableEnumMapTest(); testCase.testImmutableEnumMapOrdering(); } }
Java