blob: 6d8fd644a40c380b601e1d5f530ef8a05a14c73a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package cgeo.geocaching;
import junit.framework.TestCase;
public class StoredListTest extends TestCase {
public static void testStandardListExists() {
StoredList list = cgData.getList(StoredList.STANDARD_LIST_ID);
assertNotNull(list);
}
public static void testEquals() {
StoredList list1 = cgData.getList(StoredList.STANDARD_LIST_ID);
StoredList list2 = cgData.getList(StoredList.STANDARD_LIST_ID);
assertEquals(list1, list2);
}
}
|