package collection; import static org.junit.Assert.assertTrue; import org.junit.Test; public class SetTest { @Test public void testAdd() { Set set = SetFactory.create(); set = set.add(1); assertTrue(set.contains(1)); set = set.add(3); assertTrue(set.contains(3)); } }