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.SUPPORTS_ADD;
020import static com.google.common.collect.testing.features.CollectionSize.ZERO;
021
022import com.google.common.annotations.GwtCompatible;
023import com.google.common.collect.testing.MinimalCollection;
024import com.google.common.collect.testing.features.CollectionFeature;
025import com.google.common.collect.testing.features.CollectionSize;
026
027/**
028 * A generic JUnit test which tests addAll operations on a set. Can't be invoked directly; please
029 * see {@link com.google.common.collect.testing.SetTestSuiteBuilder}.
030 *
031 * @author Kevin Bourrillion
032 */
033@SuppressWarnings("unchecked") // too many "unchecked generic array creations"
034@GwtCompatible
035public class SetAddAllTester<E> extends AbstractSetTester<E> {
036  @CollectionFeature.Require(SUPPORTS_ADD)
037  @CollectionSize.Require(absent = ZERO)
038  public void testAddAll_supportedSomePresent() {
039    assertTrue(
040        "add(somePresent) should return true", getSet().addAll(MinimalCollection.of(e3(), e0())));
041    expectAdded(e3());
042  }
043
044  @CollectionFeature.Require(SUPPORTS_ADD)
045  public void testAddAll_withDuplicates() {
046    MinimalCollection<E> elementsToAdd = MinimalCollection.of(e3(), e4(), e3(), e4());
047    assertTrue("add(hasDuplicates) should return true", getSet().addAll(elementsToAdd));
048    expectAdded(e3(), e4());
049  }
050
051  @CollectionFeature.Require(SUPPORTS_ADD)
052  @CollectionSize.Require(absent = ZERO)
053  public void testAddAll_supportedAllPresent() {
054    assertFalse("add(allPresent) should return false", getSet().addAll(MinimalCollection.of(e0())));
055    expectUnchanged();
056  }
057}