001/*
002 * Copyright (C) 2007 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;
020import static com.google.common.collect.testing.features.CollectionFeature.SUPPORTS_ADD;
021import static com.google.common.collect.testing.features.CollectionSize.ZERO;
022
023import com.google.common.annotations.GwtCompatible;
024import com.google.common.annotations.GwtIncompatible;
025import com.google.common.collect.testing.Helpers;
026import com.google.common.collect.testing.features.CollectionFeature;
027import com.google.common.collect.testing.features.CollectionSize;
028import java.lang.reflect.Method;
029import org.junit.Ignore;
030
031/**
032 * A generic JUnit test which tests add operations on a set. Can't be invoked directly; please see
033 * {@link com.google.common.collect.testing.SetTestSuiteBuilder}.
034 *
035 * @author Kevin Bourrillion
036 */
037@GwtCompatible(emulated = true)
038@Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests.
039public class SetAddTester<E> extends AbstractSetTester<E> {
040  @CollectionFeature.Require(SUPPORTS_ADD)
041  @CollectionSize.Require(absent = ZERO)
042  public void testAdd_supportedPresent() {
043    assertFalse("add(present) should return false", getSet().add(e0()));
044    expectUnchanged();
045  }
046
047  @CollectionFeature.Require(value = {SUPPORTS_ADD, ALLOWS_NULL_VALUES})
048  @CollectionSize.Require(absent = ZERO)
049  public void testAdd_supportedNullPresent() {
050    E[] array = createArrayWithNullElement();
051    collection = getSubjectGenerator().create(array);
052    assertFalse("add(nullPresent) should return false", getSet().add(null));
053    expectContents(array);
054  }
055
056  /**
057   * Returns the {@link Method} instance for {@link #testAdd_supportedNullPresent()} so that tests
058   * can suppress it. See {@link CollectionAddTester#getAddNullSupportedMethod()} for details.
059   */
060  @GwtIncompatible // reflection
061  public static Method getAddSupportedNullPresentMethod() {
062    return Helpers.getMethod(SetAddTester.class, "testAdd_supportedNullPresent");
063  }
064}