blob: 092e45e09e4e63ae933dfdf82e20ccd84623b390 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package cgeo.geocaching.utils;
import junit.framework.TestCase;
public class HtmlUtilsTest extends TestCase {
public static void testNonLatinCharConv() {
String res = HtmlUtils.convertNonLatinCharactersToHTML("abcΦςቡぢれ");
assertEquals("abcΦςቡぢれ", res);
}
}
|