1 16 package org.apache.commons.collections.list; 17 18 import java.util.ArrayList ; 19 import java.util.Collection ; 20 import java.util.List ; 21 22 import junit.framework.Test; 23 import junit.framework.TestSuite; 24 25 34 public class TestSynchronizedList extends AbstractTestList { 35 36 public TestSynchronizedList(String testName) { 37 super(testName); 38 } 39 40 public static Test suite() { 41 return new TestSuite(TestSynchronizedList.class); 42 } 43 44 public static void main(String args[]) { 45 String [] testCaseName = { TestSynchronizedList.class.getName()}; 46 junit.textui.TestRunner.main(testCaseName); 47 } 48 49 public Collection makeConfirmedCollection() { 50 return new ArrayList (); 51 } 52 53 public List makeEmptyList() { 54 return SynchronizedList.decorate(new ArrayList ()); 55 } 56 57 public String getCompatibilityVersion() { 58 return "3.1"; 59 } 60 61 68 } 69 | Popular Tags |