diff options
| author | campbeb <bpcampbell@gmail.com> | 2013-06-05 17:04:56 -1000 |
|---|---|---|
| committer | campbeb <bpcampbell@gmail.com> | 2013-06-05 17:24:11 -1000 |
| commit | b610ce7289c4cfe9d8a040d9cc4aadee2838700d (patch) | |
| tree | 8a9a8e09c430ae96fe70b4ca3b0c5f437faa9171 /tests/src | |
| parent | e657d819d23f2e2749be4499ba2d5e9862c4a6b0 (diff) | |
| download | cgeo-b610ce7289c4cfe9d8a040d9cc4aadee2838700d.zip cgeo-b610ce7289c4cfe9d8a040d9cc4aadee2838700d.tar.gz cgeo-b610ce7289c4cfe9d8a040d9cc4aadee2838700d.tar.bz2 | |
Correct log messages to account for refactoring
Diffstat (limited to 'tests/src')
| -rw-r--r-- | tests/src/cgeo/geocaching/cgeoApplicationTest.java | 23 | ||||
| -rw-r--r-- | tests/src/cgeo/geocaching/connector/gc/GCParserTest.java | 4 |
2 files changed, 14 insertions, 13 deletions
diff --git a/tests/src/cgeo/geocaching/cgeoApplicationTest.java b/tests/src/cgeo/geocaching/cgeoApplicationTest.java index 3481c35..b808616 100644 --- a/tests/src/cgeo/geocaching/cgeoApplicationTest.java +++ b/tests/src/cgeo/geocaching/cgeoApplicationTest.java @@ -12,6 +12,7 @@ import cgeo.geocaching.enumerations.LogType; import cgeo.geocaching.enumerations.StatusCode; import cgeo.geocaching.geopoint.Geopoint; import cgeo.geocaching.geopoint.Viewport; +import cgeo.geocaching.loaders.RecaptchaReceiver; import cgeo.geocaching.test.RegExPerformanceTest; import cgeo.geocaching.test.mock.GC1ZXX2; import cgeo.geocaching.test.mock.GC2CJPF; @@ -51,7 +52,7 @@ public class cgeoApplicationTest extends CGeoTestCase { } /** - * Test {@link cgBase#searchTrackable(String, String, String)} + * Test {@link GCParser#searchTrackable(String, String, String)} */ @MediumTest public static void testSearchTrackableNotExisting() { @@ -60,7 +61,7 @@ public class cgeoApplicationTest extends CGeoTestCase { } /** - * Test {@link cgBase#searchTrackable(String, String, String)} + * Test {@link GCParser#searchTrackable(String, String, String)} */ @MediumTest public static void testSearchTrackable() { @@ -99,7 +100,7 @@ public class cgeoApplicationTest extends CGeoTestCase { } /** - * Test {@link cgBase#searchByGeocode(String, String, int, boolean, CancellableHandler)} + * Test {@link GCParser#searchByGeocode(String, String, int, boolean, CancellableHandler)} */ @MediumTest public static Geocache testSearchByGeocode(final String geocode) { @@ -115,7 +116,7 @@ public class cgeoApplicationTest extends CGeoTestCase { } /** - * Test {@link cgBase#searchByGeocode(String, String, int, boolean, CancellableHandler)} + * Test {@link Geocache#searchByGeocode(String, String, int, boolean, CancellableHandler)} */ @MediumTest public static void testSearchByGeocodeNotExisting() { @@ -125,7 +126,7 @@ public class cgeoApplicationTest extends CGeoTestCase { } /** - * Test {@link cgBase#searchByGeocode(String, String, int, boolean, CancellableHandler)} + * Test {@link Geocache#searchByGeocode(String, String, int, boolean, CancellableHandler)} */ @MediumTest public static void testSearchByGeocodeNotLoggedIn() { @@ -164,7 +165,7 @@ public class cgeoApplicationTest extends CGeoTestCase { } /** - * Test {@link cgBase#searchByGeocode(String, String, int, boolean, CancellableHandler)} + * Test {@link Geocache#searchByGeocode(String, String, int, boolean, CancellableHandler)} */ @MediumTest public static void testSearchErrorOccured() { @@ -213,7 +214,7 @@ public class cgeoApplicationTest extends CGeoTestCase { } /** - * Test {@link cgBase#searchByCoords(AbstractSearchThread, Geopoint, String, int, boolean)} + * Test {@link GCParser#searchByCoords(Geopoint, CacheType, boolean, RecaptchaReceiver)} */ @MediumTest public static void testSearchByCoords() { @@ -230,7 +231,7 @@ public class cgeoApplicationTest extends CGeoTestCase { } /** - * Test {@link cgBase#searchByOwner(String, String, int, boolean, CancellableHandler)} + * Test {@link GCParser#searchByOwner(String, CacheType, boolean, RecaptchaReceiver)} */ @MediumTest public static void testSearchByOwner() { @@ -247,7 +248,7 @@ public class cgeoApplicationTest extends CGeoTestCase { } /** - * Test {@link cgBase#searchByUsername(String, String, int, boolean, CancellableHandler)} + * Test {@link GCParser#searchByUsername(String, CacheType, boolean, RecaptchaReceiver)} */ @MediumTest public static void testSearchByUsername() { @@ -264,7 +265,7 @@ public class cgeoApplicationTest extends CGeoTestCase { } /** - * Test {@link cgBase#searchByViewport(String, Viewport)} + * Test {@link ConnectorFactory#searchByViewport(Viewport, String)} */ @MediumTest public static void testSearchByViewport() { @@ -319,7 +320,7 @@ public class cgeoApplicationTest extends CGeoTestCase { } /** - * Test {@link cgBase#searchByViewport(String, Viewport)} + * Test {@link ConnectorFactory#searchByViewport(Viewport, String)} */ @MediumTest public static void testSearchByViewportNotLoggedIn() { diff --git a/tests/src/cgeo/geocaching/connector/gc/GCParserTest.java b/tests/src/cgeo/geocaching/connector/gc/GCParserTest.java index db064b8..9bc2caf 100644 --- a/tests/src/cgeo/geocaching/connector/gc/GCParserTest.java +++ b/tests/src/cgeo/geocaching/connector/gc/GCParserTest.java @@ -95,8 +95,8 @@ public class GCParserTest extends AbstractResourceInstrumentationTestCase { } /** - * Test {@link cgBase#parseCacheFromText(String, int, CancellableHandler)} with "mocked" data - * + * Test {@link GCParser#parseCacheFromText(String, int, CancellableHandler)} with "mocked" data + * */ @MediumTest public static void testParseCacheFromTextWithMockedData() { |
