guava

Форк
0
/
AbstractCollectionTester.java 
83 строки · 2.6 Кб
1
/*
2
 * Copyright (C) 2007 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;
18

19
import com.google.common.annotations.GwtCompatible;
20
import com.google.errorprone.annotations.CanIgnoreReturnValue;
21
import java.util.Collection;
22
import org.checkerframework.checker.nullness.qual.Nullable;
23
import org.junit.Ignore;
24

25
/**
26
 * Base class for collection testers.
27
 *
28
 * @param <E> the element type of the collection to be tested.
29
 * @author Kevin Bourrillion
30
 */
31
@GwtCompatible
32
@Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests.
33
@ElementTypesAreNonnullByDefault
34
public abstract class AbstractCollectionTester<E extends @Nullable Object>
35
    extends AbstractContainerTester<Collection<E>, E> {
36

37
  // TODO: replace this with an accessor.
38
  protected Collection<E> collection;
39

40
  @Override
41
  protected Collection<E> actualContents() {
42
    return collection;
43
  }
44

45
  // TODO: dispose of this once collection is encapsulated.
46
  @Override
47
  @CanIgnoreReturnValue
48
  protected Collection<E> resetContainer(Collection<E> newContents) {
49
    collection = super.resetContainer(newContents);
50
    return collection;
51
  }
52

53
  /** @see AbstractContainerTester#resetContainer() */
54
  protected void resetCollection() {
55
    resetContainer();
56
  }
57

58
  /** @return an array of the proper size with {@code null} inserted into the middle element. */
59
  protected E[] createArrayWithNullElement() {
60
    E[] array = createSamplesArray();
61
    array[getNullLocation()] = null;
62
    return array;
63
  }
64

65
  protected void initCollectionWithNullElement() {
66
    E[] array = createArrayWithNullElement();
67
    resetContainer(getSubjectGenerator().create(array));
68
  }
69

70
  /**
71
   * Equivalent to {@link #expectMissing(Object[]) expectMissing}{@code (null)} except that the call
72
   * to {@code contains(null)} is permitted to throw a {@code NullPointerException}.
73
   *
74
   * @param message message to use upon assertion failure
75
   */
76
  protected void expectNullMissingWhenNullUnsupported(String message) {
77
    try {
78
      assertFalse(message, actualContents().contains(null));
79
    } catch (NullPointerException tolerated) {
80
      // Tolerated
81
    }
82
  }
83
}
84

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

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

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

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