1 package org.columba.core.xml; 19 20 import junit.framework.Assert; 21 import junit.framework.TestCase; 22 23 24 29 public class XmlTest2 extends TestCase { 30 public void testEscapeText() { 31 String source = "Heinz M?ller <heinz@mail.com>"; 32 33 String dest = TextUtils.escapeText(source); 34 35 Assert.assertEquals(dest, "Heinz M?ller <heinz@mail.com>"); 36 } 37 } 38 | Popular Tags |