summaryrefslogtreecommitdiff
path: root/src/instrumentationTest
diff options
context:
space:
mode:
Diffstat (limited to 'src/instrumentationTest')
-rw-r--r--src/instrumentationTest/de/test/antennapod/util/URLCheckerTest.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/instrumentationTest/de/test/antennapod/util/URLCheckerTest.java b/src/instrumentationTest/de/test/antennapod/util/URLCheckerTest.java
index 64d45dc60..18e8bf007 100644
--- a/src/instrumentationTest/de/test/antennapod/util/URLCheckerTest.java
+++ b/src/instrumentationTest/de/test/antennapod/util/URLCheckerTest.java
@@ -37,4 +37,10 @@ public class URLCheckerTest extends AndroidTestCase {
final String out = URLChecker.prepareURL(in);
assertEquals("http://example.com", out);
}
+
+ public void testItcpProtocol() {
+ final String in = "itpc://example.com";
+ final String out = URLChecker.prepareURL(in);
+ assertEquals("http://example.com", out);
+ }
}