1 package org.objectweb.celtix.tools.utils; 2 3 import junit.framework.TestCase; 4 5 public class BuiltInTypesJavaMappingUtilTest extends TestCase { 6 private final String xmlSchemaNS = "http://www.w3.org/2000/10/XMLSchema"; 7 public void testGetJType() { 8 String jType = BuiltInTypesJavaMappingUtil.getJType(xmlSchemaNS, "string"); 9 assertEquals(jType, "java.lang.String"); 10 } 11 } 12 | Popular Tags |