1 16 17 package test.types; 18 19 import junit.framework.TestCase; 20 import org.apache.axis.types.URI; 21 22 25 public class TestURI extends TestCase { 26 27 public TestURI(String name) { 28 super(name); 29 } 30 31 34 public void testAxis814() throws Exception { 35 URI uri1 = new URI("urn:foobar"); 36 URI uri2 = new URI("urn:foobar"); 37 assertEquals(uri1,uri2); 38 assertEquals(uri1.hashCode(),uri2.hashCode()); 39 } 40 } 41 | Popular Tags |