aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/cgeo/geocaching/StoredListTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/cgeo/geocaching/StoredListTest.java')
-rw-r--r--tests/src/cgeo/geocaching/StoredListTest.java18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/src/cgeo/geocaching/StoredListTest.java b/tests/src/cgeo/geocaching/StoredListTest.java
deleted file mode 100644
index dd8b6c7..0000000
--- a/tests/src/cgeo/geocaching/StoredListTest.java
+++ /dev/null
@@ -1,18 +0,0 @@
-package cgeo.geocaching;
-
-import junit.framework.TestCase;
-
-public class StoredListTest extends TestCase {
-
- public static void testStandardListExists() {
- final StoredList list = cgData.getList(StoredList.STANDARD_LIST_ID);
- assertNotNull(list);
- }
-
- public static void testEquals() {
- final StoredList list1 = cgData.getList(StoredList.STANDARD_LIST_ID);
- final StoredList list2 = cgData.getList(StoredList.STANDARD_LIST_ID);
- assertEquals(list1, list2);
- }
-
-}