aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/cgeo/geocaching/utils/CryptUtilsTest.java
diff options
context:
space:
mode:
authorStephan Merker <merker.stephan@googlemail.com>2011-10-03 17:40:09 +0200
committerStephan Merker <merker.stephan@googlemail.com>2011-10-03 17:40:09 +0200
commit4c112ed7a840c3ecc28322213e01820cec92df20 (patch)
tree6ae8d20fcf5ffe4cc5931e24c9740737a87a02b9 /tests/src/cgeo/geocaching/utils/CryptUtilsTest.java
parent25adf45d906fe8cf6ddeb21d66ce3ccd9fd82939 (diff)
downloadcgeo-4c112ed7a840c3ecc28322213e01820cec92df20.zip
cgeo-4c112ed7a840c3ecc28322213e01820cec92df20.tar.gz
cgeo-4c112ed7a840c3ecc28322213e01820cec92df20.tar.bz2
Refactoring: put tests into same java package as tested class
- fixes #587 - test suite and 3 tests (regex and whitespace perf tests) remain in cgeo.geocaching.test
Diffstat (limited to 'tests/src/cgeo/geocaching/utils/CryptUtilsTest.java')
-rw-r--r--tests/src/cgeo/geocaching/utils/CryptUtilsTest.java15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/src/cgeo/geocaching/utils/CryptUtilsTest.java b/tests/src/cgeo/geocaching/utils/CryptUtilsTest.java
new file mode 100644
index 0000000..22c87f6
--- /dev/null
+++ b/tests/src/cgeo/geocaching/utils/CryptUtilsTest.java
@@ -0,0 +1,15 @@
+package cgeo.geocaching.utils;
+
+import cgeo.geocaching.utils.CryptUtils;
+
+import junit.framework.TestCase;
+
+@SuppressWarnings("static-method")
+public class CryptUtilsTest extends TestCase {
+ public void testROT13() {
+ assertEquals("", CryptUtils.rot13(""));
+ assertEquals("", CryptUtils.rot13((String) null));
+ assertEquals("Pnpur uvag", CryptUtils.rot13("Cache hint"));
+ assertEquals("123", CryptUtils.rot13("123"));
+ }
+}