001/* 002 * Copyright (C) 2008 The Guava Authors 003 * 004 * Licensed under the Apache License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.apache.org/licenses/LICENSE-2.0 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016 017package com.google.common.collect.testing.testers; 018 019import static com.google.common.collect.testing.features.CollectionFeature.ALLOWS_NULL_VALUES; 020 021import com.google.common.annotations.GwtCompatible; 022import com.google.common.annotations.GwtIncompatible; 023import com.google.common.annotations.J2ktIncompatible; 024import com.google.common.collect.testing.Helpers; 025import com.google.common.collect.testing.features.CollectionFeature; 026import com.google.common.collect.testing.features.CollectionSize; 027import java.lang.reflect.Method; 028import java.util.Collection; 029import org.junit.Ignore; 030 031/** 032 * Tests {@link java.util.Set#hashCode}. 033 * 034 * @author George van den Driessche 035 */ 036@GwtCompatible(emulated = true) 037@Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests. 038@SuppressWarnings("JUnit4ClassUsedInJUnit3") 039public class SetHashCodeTester<E> extends AbstractSetTester<E> { 040 public void testHashCode() { 041 int expectedHashCode = 0; 042 for (E element : getSampleElements()) { 043 expectedHashCode += ((element == null) ? 0 : element.hashCode()); 044 } 045 assertEquals( 046 "A Set's hashCode() should be the sum of those of its elements.", 047 expectedHashCode, 048 getSet().hashCode()); 049 } 050 051 @CollectionSize.Require(absent = CollectionSize.ZERO) 052 @CollectionFeature.Require(ALLOWS_NULL_VALUES) 053 public void testHashCode_containingNull() { 054 Collection<E> elements = getSampleElements(getNumElements() - 1); 055 int expectedHashCode = 0; 056 for (E element : elements) { 057 expectedHashCode += ((element == null) ? 0 : element.hashCode()); 058 } 059 060 elements.add(null); 061 collection = getSubjectGenerator().create(elements.toArray()); 062 assertEquals( 063 "A Set's hashCode() should be the sum of those of its elements (with " 064 + "a null element counting as having a hash of zero).", 065 expectedHashCode, 066 getSet().hashCode()); 067 } 068 069 /** 070 * Returns the {@link Method} instances for the test methods in this class which call {@code 071 * hashCode()} on the set values so that set tests on unhashable objects can suppress it with 072 * {@code FeatureSpecificTestSuiteBuilder.suppressing()}. 073 */ 074 @J2ktIncompatible 075 @GwtIncompatible // reflection 076 public static Method[] getHashCodeMethods() { 077 return new Method[] { 078 Helpers.getMethod(SetHashCodeTester.class, "testHashCode"), 079 Helpers.getMethod(SetHashCodeTester.class, "testHashCode_containingNull") 080 }; 081 } 082}