/* * Copyright 2014 Google Inc. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.inferred.freebuilder; import static org.junit.Assert.assertEquals; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.JUnit4; import java.util.HashSet; import java.util.Set; /** FreeBuilder test using {@link ListProperty}. */ @RunWith(JUnit4.class) public class SetPropertyTest { private static final String NAME_1 = "name1"; private static final String NAME_2 = "name2"; private static final String NAME_3 = "name3"; @Test public void testAllMethodInteractions() { SetProperty.Builder builder = new SetProperty.Builder(); builder.addNames(NAME_1); assertEquals(newHashSet(NAME_1), builder.build().getNames()); builder.addNames(NAME_1); assertEquals(newHashSet(NAME_1), builder.build().getNames()); builder.addNames(NAME_2, NAME_3); assertEquals(newHashSet(NAME_1, NAME_2, NAME_3), builder.build().getNames()); builder.clearNames(); assertEquals(newHashSet(), builder.build().getNames()); builder.addAllNames(newHashSet(NAME_2, NAME_1)); assertEquals(newHashSet(NAME_2, NAME_1), builder.build().getNames()); builder.clear(); assertEquals(newHashSet(), builder.build().getNames()); } @SafeVarargs private static <E> Set<E> newHashSet(E... items) { Set<E> list = new HashSet<E>(); for (E item : items) { list.add(item); } return list; } }