aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/cgeo
diff options
context:
space:
mode:
authorBananeweizen <bananeweizen@gmx.de>2012-03-04 07:28:42 +0100
committerBananeweizen <bananeweizen@gmx.de>2012-03-04 07:28:42 +0100
commit00e4f99229d03d7db5ffd753e9e704e19abea3fa (patch)
tree584a05ec82c24ef86fcb0477b254c57aa28096d2 /tests/src/cgeo
parent32b4ba8e94c7aab44dab614b16cb203809d2a2a5 (diff)
downloadcgeo-00e4f99229d03d7db5ffd753e9e704e19abea3fa.zip
cgeo-00e4f99229d03d7db5ffd753e9e704e19abea3fa.tar.gz
cgeo-00e4f99229d03d7db5ffd753e9e704e19abea3fa.tar.bz2
refactoring: move constants and classes to the packages they belong to
Diffstat (limited to 'tests/src/cgeo')
-rw-r--r--tests/src/cgeo/geocaching/cgBaseTest.java1
-rw-r--r--tests/src/cgeo/geocaching/connector/ConnectorFactoryTest.java1
-rw-r--r--tests/src/cgeo/geocaching/connector/gc/GCConstantsTest.java (renamed from tests/src/cgeo/geocaching/GCConstantsTest.java)3
-rw-r--r--tests/src/cgeo/geocaching/test/mock/MockedCache.java2
-rw-r--r--tests/src/cgeo/geocaching/utils/LogTemplateProviderTest.java (renamed from tests/src/cgeo/geocaching/LogTemplateProviderTest.java)2
5 files changed, 6 insertions, 3 deletions
diff --git a/tests/src/cgeo/geocaching/cgBaseTest.java b/tests/src/cgeo/geocaching/cgBaseTest.java
index bfb0cc7..6b7c6b6 100644
--- a/tests/src/cgeo/geocaching/cgBaseTest.java
+++ b/tests/src/cgeo/geocaching/cgBaseTest.java
@@ -1,5 +1,6 @@
package cgeo.geocaching;
+import cgeo.geocaching.connector.gc.GCConstants;
import cgeo.geocaching.enumerations.LoadFlags;
import cgeo.geocaching.enumerations.LogType;
import cgeo.geocaching.geopoint.Geopoint;
diff --git a/tests/src/cgeo/geocaching/connector/ConnectorFactoryTest.java b/tests/src/cgeo/geocaching/connector/ConnectorFactoryTest.java
index cb35645..41a819f 100644
--- a/tests/src/cgeo/geocaching/connector/ConnectorFactoryTest.java
+++ b/tests/src/cgeo/geocaching/connector/ConnectorFactoryTest.java
@@ -1,5 +1,6 @@
package cgeo.geocaching.connector;
+import cgeo.geocaching.connector.gc.GCConnector;
import cgeo.geocaching.test.AbstractResourceInstrumentationTestCase;
import cgeo.geocaching.test.mock.GC1ZXX2;
diff --git a/tests/src/cgeo/geocaching/GCConstantsTest.java b/tests/src/cgeo/geocaching/connector/gc/GCConstantsTest.java
index eeb9cf7..c930ab5 100644
--- a/tests/src/cgeo/geocaching/GCConstantsTest.java
+++ b/tests/src/cgeo/geocaching/connector/gc/GCConstantsTest.java
@@ -1,5 +1,6 @@
-package cgeo.geocaching;
+package cgeo.geocaching.connector.gc;
+import cgeo.geocaching.connector.gc.GCConstants;
import cgeo.geocaching.test.mock.MockedCache;
import cgeo.geocaching.utils.BaseUtils;
diff --git a/tests/src/cgeo/geocaching/test/mock/MockedCache.java b/tests/src/cgeo/geocaching/test/mock/MockedCache.java
index 83c3bc9..4eb60dd 100644
--- a/tests/src/cgeo/geocaching/test/mock/MockedCache.java
+++ b/tests/src/cgeo/geocaching/test/mock/MockedCache.java
@@ -1,9 +1,9 @@
package cgeo.geocaching.test.mock;
-import cgeo.geocaching.GCConstants;
import cgeo.geocaching.ICache;
import cgeo.geocaching.cgImage;
import cgeo.geocaching.cgTrackable;
+import cgeo.geocaching.connector.gc.GCConstants;
import cgeo.geocaching.geopoint.Geopoint;
import cgeo.geocaching.geopoint.GeopointFormatter;
import cgeo.geocaching.utils.BaseUtils;
diff --git a/tests/src/cgeo/geocaching/LogTemplateProviderTest.java b/tests/src/cgeo/geocaching/utils/LogTemplateProviderTest.java
index 2e6057f..ec54008 100644
--- a/tests/src/cgeo/geocaching/LogTemplateProviderTest.java
+++ b/tests/src/cgeo/geocaching/utils/LogTemplateProviderTest.java
@@ -1,4 +1,4 @@
-package cgeo.geocaching;
+package cgeo.geocaching.utils;
import cgeo.geocaching.utils.LogTemplateProvider;