1 16 package org.apache.juddi.handler; 17 18 import junit.framework.TestCase; 19 20 import org.apache.juddi.util.xml.XMLUtils; 21 import org.w3c.dom.Element ; 22 23 26 public abstract class HandlerTestCase extends TestCase 27 { 28 public HandlerTestCase(String arg0) 29 { 30 super(arg0); 31 } 32 33 protected final String getXMLString(Element element) 34 { 35 return XMLUtils.toString(element); 36 } 37 } 38 | Popular Tags |