Java

Форк
0
87 строк · 3.5 Кб
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
import static com.google.common.collect.testing.features.CollectionFeature.REJECTS_DUPLICATES_AT_CREATION;
21
import static com.google.common.collect.testing.features.CollectionSize.ONE;
22
import static com.google.common.collect.testing.features.CollectionSize.ZERO;
23

24
import com.google.common.annotations.GwtCompatible;
25
import com.google.common.collect.testing.features.CollectionFeature;
26
import com.google.common.collect.testing.features.CollectionSize;
27
import java.util.Arrays;
28
import java.util.List;
29
import org.junit.Ignore;
30

31
/**
32
 * A generic JUnit test which tests creation (typically through a constructor or static factory
33
 * method) of a set. Can't be invoked directly; please see {@link
34
 * com.google.common.collect.testing.SetTestSuiteBuilder}.
35
 *
36
 * @author Chris Povirk
37
 */
38
@GwtCompatible
39
@Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests.
40
@SuppressWarnings("JUnit4ClassUsedInJUnit3")
41
public class SetCreationTester<E> extends AbstractSetTester<E> {
42
  @CollectionFeature.Require(value = ALLOWS_NULL_VALUES, absent = REJECTS_DUPLICATES_AT_CREATION)
43
  @CollectionSize.Require(absent = {ZERO, ONE})
44
  public void testCreateWithDuplicates_nullDuplicatesNotRejected() {
45
    E[] array = createArrayWithNullElement();
46
    array[0] = null;
47
    collection = getSubjectGenerator().create(array);
48

49
    List<E> expectedWithDuplicateRemoved = Arrays.asList(array).subList(1, getNumElements());
50
    expectContents(expectedWithDuplicateRemoved);
51
  }
52

53
  @CollectionFeature.Require(absent = REJECTS_DUPLICATES_AT_CREATION)
54
  @CollectionSize.Require(absent = {ZERO, ONE})
55
  public void testCreateWithDuplicates_nonNullDuplicatesNotRejected() {
56
    E[] array = createSamplesArray();
57
    array[1] = e0();
58
    collection = getSubjectGenerator().create(array);
59

60
    List<E> expectedWithDuplicateRemoved = Arrays.asList(array).subList(1, getNumElements());
61
    expectContents(expectedWithDuplicateRemoved);
62
  }
63

64
  @CollectionFeature.Require({ALLOWS_NULL_VALUES, REJECTS_DUPLICATES_AT_CREATION})
65
  @CollectionSize.Require(absent = {ZERO, ONE})
66
  public void testCreateWithDuplicates_nullDuplicatesRejected() {
67
    E[] array = createArrayWithNullElement();
68
    array[0] = null;
69
    try {
70
      collection = getSubjectGenerator().create(array);
71
      fail("Should reject duplicate null elements at creation");
72
    } catch (IllegalArgumentException expected) {
73
    }
74
  }
75

76
  @CollectionFeature.Require(REJECTS_DUPLICATES_AT_CREATION)
77
  @CollectionSize.Require(absent = {ZERO, ONE})
78
  public void testCreateWithDuplicates_nonNullDuplicatesRejected() {
79
    E[] array = createSamplesArray();
80
    array[1] = e0();
81
    try {
82
      collection = getSubjectGenerator().create(array);
83
      fail("Should reject duplicate non-null elements at creation");
84
    } catch (IllegalArgumentException expected) {
85
    }
86
  }
87
}
88

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

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

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

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