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