1 16 package org.apache.commons.collections.set; 17 18 import java.util.Set ; 19 import java.util.TreeSet ; 20 21 import junit.framework.Test; 22 23 import org.apache.commons.collections.BulkTest; 24 25 34 public class TestSynchronizedSortedSet extends AbstractTestSortedSet{ 35 36 public TestSynchronizedSortedSet(String testName) { 37 super(testName); 38 } 39 40 public static Test suite() { 41 return BulkTest.makeSuite(TestSynchronizedSortedSet.class); 42 } 43 44 public static void main(String args[]) { 45 String [] testCaseName = { TestSynchronizedSortedSet.class.getName()}; 46 junit.textui.TestRunner.main(testCaseName); 47 } 48 49 public Set makeEmptySet() { 51 return SynchronizedSortedSet.decorate(new TreeSet ()); 52 } 53 54 public String getCompatibilityVersion() { 55 return "3.1"; 56 } 57 58 65 } 66 | Popular Tags |