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