oopuebung/uebung09/test/collection/SetTest.java
2025-06-12 11:59:41 +02:00

18 lines
333 B
Java

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