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