aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/cgeo/geocaching/utils/HtmlUtilsTest.java
blob: 52b816e6fd0f94385421efaa37a98ae5d7af5ed2 (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() {
        final String res = HtmlUtils.convertNonLatinCharactersToHTML("abcΦςቡぢれ");
        assertEquals("abcΦςቡぢれ", res);
    }
}