1 61 62 63 64 package org.jaxen; 65 66 67 import java.util.HashMap ; 68 import java.util.Map ; 69 70 import junit.framework.TestCase; 71 72 81 public class SimpleNamespaceContextTest extends TestCase 82 { 83 84 89 public void testMapCopy() { 90 Map map = new HashMap (); 91 SimpleNamespaceContext context = new SimpleNamespaceContext(map); 92 map.put("pre", "http://www.example.org/"); 93 assertNull(context.translateNamespacePrefixToUri("pre")); 94 } 95 96 } 97 | Popular Tags |