1 17 18 package org.apache.geronimo.common.propertyeditor; 19 20 import java.util.ArrayList ; 21 import java.util.Collection ; 22 23 28 public class CollectionEditorTest extends AbstractCollectionEditorTest { 29 30 protected void setUp() { 31 editor = PropertyEditors.findEditor(Collection .class); 32 ordered = false; 33 } 34 35 public void testEditorClass() throws Exception { 36 assertEquals(CollectionEditor.class, editor.getClass()); 37 } 38 39 protected void checkType(Object output) { 40 assertTrue(output instanceof Collection ); 41 } 42 43 protected Collection createCollection() { 44 return new ArrayList (); 45 } 46 } 47 | Popular Tags |