aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/cgeo/geocaching/utils/HtmlUtilsTest.java
diff options
context:
space:
mode:
authorSammysHP <sven@sammyshp.de>2013-03-18 13:03:05 -0700
committerSammysHP <sven@sammyshp.de>2013-03-18 13:03:05 -0700
commitb41e4b1560bbad8e565cefcbcb8b910614e93645 (patch)
tree2bf2f941cedfc69e049262ea4708b1e206a2d73e /tests/src/cgeo/geocaching/utils/HtmlUtilsTest.java
parentd760beed1625442fe268f05193556e37a4a7da5a (diff)
parentfb6ae7ff0528ff60a561d4eab00e55ad7acf3a2b (diff)
downloadcgeo-b41e4b1560bbad8e565cefcbcb8b910614e93645.zip
cgeo-b41e4b1560bbad8e565cefcbcb8b910614e93645.tar.gz
cgeo-b41e4b1560bbad8e565cefcbcb8b910614e93645.tar.bz2
Merge pull request #2580 from koem/issue2538-utf8
Fixes #2538 - German Umlauts in image caption and description
Diffstat (limited to 'tests/src/cgeo/geocaching/utils/HtmlUtilsTest.java')
-rw-r--r--tests/src/cgeo/geocaching/utils/HtmlUtilsTest.java11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/src/cgeo/geocaching/utils/HtmlUtilsTest.java b/tests/src/cgeo/geocaching/utils/HtmlUtilsTest.java
deleted file mode 100644
index 52b816e..0000000
--- a/tests/src/cgeo/geocaching/utils/HtmlUtilsTest.java
+++ /dev/null
@@ -1,11 +0,0 @@
-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&#934;&#962;&#4705;&#12386;&#12428;", res);
- }
-}