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. 040@SuppressWarnings("JUnit4ClassUsedInJUnit3") 041public class SetAddTester<E> extends AbstractSetTester<E> { 042 @CollectionFeature.Require(SUPPORTS_ADD) 043 @CollectionSize.Require(absent = ZERO) 044 public void testAdd_supportedPresent() { 045 assertFalse("add(present) should return false", getSet().add(e0())); 046 expectUnchanged(); 047 } 048 049 @CollectionFeature.Require(value = {SUPPORTS_ADD, ALLOWS_NULL_VALUES}) 050 @CollectionSize.Require(absent = ZERO) 051 public void testAdd_supportedNullPresent() { 052 E[] array = createArrayWithNullElement(); 053 collection = getSubjectGenerator().create(array); 054 assertFalse("add(nullPresent) should return false", getSet().add(null)); 055 expectContents(array); 056 } 057 058 /** 059 * Returns the {@link Method} instance for {@link #testAdd_supportedNullPresent()} so that tests 060 * can suppress it. See {@link CollectionAddTester#getAddNullSupportedMethod()} for details. 061 */ 062 @J2ktIncompatible 063 @GwtIncompatible // reflection 064 public static Method getAddSupportedNullPresentMethod() { 065 return Helpers.getMethod(SetAddTester.class, "testAdd_supportedNullPresent"); 066 } 067}