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); } }