1 16 package org.apache.commons.collections.set; 17 18 import java.util.HashSet ; 19 import java.util.Set ; 20 21 import junit.framework.Test; 22 23 import org.apache.commons.collections.BulkTest; 24 25 34 public class TestTypedSet extends AbstractTestSet{ 35 36 public TestTypedSet(String testName) { 37 super(testName); 38 } 39 40 public static Test suite() { 41 return BulkTest.makeSuite(TestTypedSet.class); 42 } 43 44 public static void main(String args[]) { 45 String [] testCaseName = { TestTypedSet.class.getName()}; 46 junit.textui.TestRunner.main(testCaseName); 47 } 48 49 public Set makeEmptySet() { 51 return TypedSet.decorate(new HashSet (), Object .class); 52 } 53 54 public boolean isNullSupported() { 55 return false; 56 } 57 58 public boolean skipSerializedCanonicalTests() { 59 return true; } 61 62 } 63 | Popular Tags |