aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/cgeo/geocaching/cgeoApplicationTest.java
diff options
context:
space:
mode:
authorSamuel Tardieu <sam@rfc1149.net>2011-10-22 11:46:58 +0200
committerSamuel Tardieu <sam@rfc1149.net>2011-10-22 11:46:58 +0200
commit15c43ea435b878ef96d7ba6857aad851a373d6e7 (patch)
tree050109f30db611128e37777fb699489b7612f513 /tests/src/cgeo/geocaching/cgeoApplicationTest.java
parente76dddb4892cfc75823a59c925e46e70b1fe5674 (diff)
downloadcgeo-15c43ea435b878ef96d7ba6857aad851a373d6e7.zip
cgeo-15c43ea435b878ef96d7ba6857aad851a373d6e7.tar.gz
cgeo-15c43ea435b878ef96d7ba6857aad851a373d6e7.tar.bz2
Split cache loading in offline + online modes
Also, add a new "loading elevation data" step in progress dialog. This closes #701.
Diffstat (limited to 'tests/src/cgeo/geocaching/cgeoApplicationTest.java')
-rw-r--r--tests/src/cgeo/geocaching/cgeoApplicationTest.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/src/cgeo/geocaching/cgeoApplicationTest.java b/tests/src/cgeo/geocaching/cgeoApplicationTest.java
index 25501cf..20743f1 100644
--- a/tests/src/cgeo/geocaching/cgeoApplicationTest.java
+++ b/tests/src/cgeo/geocaching/cgeoApplicationTest.java
@@ -59,13 +59,13 @@ public class cgeoApplicationTest extends ApplicationTestCase<cgeoapplication> {
}
/**
- * Test {@link cgBase#parseCache(String, int) with "mocked" data
+ * Test {@link cgBase#parseCacheFromText(String, int, Handler) with "mocked" data
* @param base
*/
@MediumTest
- public static void testParseCache() {
+ public static void testParseCacheFromText() {
for (MockedCache cache : RegExPerformanceTest.MOCKED_CACHES) {
- cgCacheWrap caches = cgBase.parseCache(cache.getData(), 0, null);
+ cgCacheWrap caches = cgBase.parseCacheFromText(cache.getData(), 0, null);
cgCache cacheParsed = caches.cacheList.get(0);
Assert.assertEquals(cache.getGeocode(), cacheParsed.getGeocode());
Assert.assertEquals(cache.getType(), cacheParsed.getType());
@@ -110,7 +110,7 @@ public class cgeoApplicationTest extends ApplicationTestCase<cgeoapplication> {
}
public static void testParseLocationWithLink() {
- cgCacheWrap caches = cgBase.parseCache(MockedCache.readCachePage("GCV2R9"), 0, null);
+ cgCacheWrap caches = cgBase.parseCacheFromText(MockedCache.readCachePage("GCV2R9"), 0, null);
assertEquals(1, caches.cacheList.size());
cgCache cache = caches.cacheList.get(0);
Assert.assertEquals("California, United States", cache.getLocation());