Java

Форк
0
82 строки · 3.0 Кб
1
/*
2
 * Copyright (C) 2008 The Guava Authors
3
 *
4
 * Licensed under the Apache License, Version 2.0 (the "License");
5
 * you may not use this file except in compliance with the License.
6
 * You may obtain a copy of the License at
7
 *
8
 * http://www.apache.org/licenses/LICENSE-2.0
9
 *
10
 * Unless required by applicable law or agreed to in writing, software
11
 * distributed under the License is distributed on an "AS IS" BASIS,
12
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
 * See the License for the specific language governing permissions and
14
 * limitations under the License.
15
 */
16

17
package com.google.common.collect.testing.testers;
18

19
import static com.google.common.collect.testing.features.CollectionFeature.ALLOWS_NULL_VALUES;
20

21
import com.google.common.annotations.GwtCompatible;
22
import com.google.common.annotations.GwtIncompatible;
23
import com.google.common.annotations.J2ktIncompatible;
24
import com.google.common.collect.testing.Helpers;
25
import com.google.common.collect.testing.features.CollectionFeature;
26
import com.google.common.collect.testing.features.CollectionSize;
27
import java.lang.reflect.Method;
28
import java.util.Collection;
29
import org.junit.Ignore;
30

31
/**
32
 * Tests {@link java.util.Set#hashCode}.
33
 *
34
 * @author George van den Driessche
35
 */
36
@GwtCompatible(emulated = true)
37
@Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests.
38
@SuppressWarnings("JUnit4ClassUsedInJUnit3")
39
public class SetHashCodeTester<E> extends AbstractSetTester<E> {
40
  public void testHashCode() {
41
    int expectedHashCode = 0;
42
    for (E element : getSampleElements()) {
43
      expectedHashCode += ((element == null) ? 0 : element.hashCode());
44
    }
45
    assertEquals(
46
        "A Set's hashCode() should be the sum of those of its elements.",
47
        expectedHashCode,
48
        getSet().hashCode());
49
  }
50

51
  @CollectionSize.Require(absent = CollectionSize.ZERO)
52
  @CollectionFeature.Require(ALLOWS_NULL_VALUES)
53
  public void testHashCode_containingNull() {
54
    Collection<E> elements = getSampleElements(getNumElements() - 1);
55
    int expectedHashCode = 0;
56
    for (E element : elements) {
57
      expectedHashCode += ((element == null) ? 0 : element.hashCode());
58
    }
59

60
    elements.add(null);
61
    collection = getSubjectGenerator().create(elements.toArray());
62
    assertEquals(
63
        "A Set's hashCode() should be the sum of those of its elements (with "
64
            + "a null element counting as having a hash of zero).",
65
        expectedHashCode,
66
        getSet().hashCode());
67
  }
68

69
  /**
70
   * Returns the {@link Method} instances for the test methods in this class which call {@code
71
   * hashCode()} on the set values so that set tests on unhashable objects can suppress it with
72
   * {@code FeatureSpecificTestSuiteBuilder.suppressing()}.
73
   */
74
  @J2ktIncompatible
75
  @GwtIncompatible // reflection
76
  public static Method[] getHashCodeMethods() {
77
    return new Method[] {
78
      Helpers.getMethod(SetHashCodeTester.class, "testHashCode"),
79
      Helpers.getMethod(SetHashCodeTester.class, "testHashCode_containingNull")
80
    };
81
  }
82
}
83

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.