aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/cgeo/geocaching/utils/HtmlUtilsTest.java
blob: 3715c80252e62f25ff271742e494199efc11f76c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package cgeo.geocaching.utils;

import org.apache.commons.lang3.StringUtils;

import junit.framework.TestCase;

public class HtmlUtilsTest extends TestCase {

    public static void testExtractText() {
        assertEquals(StringUtils.EMPTY, HtmlUtils.extractText(null));
        assertEquals(StringUtils.EMPTY, HtmlUtils.extractText(StringUtils.EMPTY));
        assertEquals(StringUtils.EMPTY, HtmlUtils.extractText("   "));
    }

}