diff options
| author | Bananeweizen <bananeweizen@gmx.de> | 2014-07-20 07:34:33 +0200 |
|---|---|---|
| committer | Bananeweizen <bananeweizen@gmx.de> | 2014-07-20 07:34:33 +0200 |
| commit | 8801cfcf6ab3848f11bbd5f458cb252366035d8b (patch) | |
| tree | 56a8a88e9c7f0594b003d1b2905d91d81656eb31 /tests | |
| parent | 59201fa2f1087e76a68ade92d4f0f41a86a79e9a (diff) | |
| download | cgeo-8801cfcf6ab3848f11bbd5f458cb252366035d8b.zip cgeo-8801cfcf6ab3848f11bbd5f458cb252366035d8b.tar.gz cgeo-8801cfcf6ab3848f11bbd5f458cb252366035d8b.tar.bz2 | |
refactoring: reduce package cycles
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/src/cgeo/geocaching/connector/gc/UncertainPropertyTest.java (renamed from tests/src/cgeo/geocaching/utils/UncertainPropertyTest.java) | 4 | ||||
| -rw-r--r-- | tests/src/cgeo/geocaching/geopoint/GeoPointFormatterTest.java | 2 | ||||
| -rw-r--r-- | tests/src/cgeo/geocaching/geopoint/GeoPointParserTest.java | 2 | ||||
| -rw-r--r-- | tests/src/cgeo/geocaching/utils/FormatterTest.java (renamed from tests/src/cgeo/geocaching/ui/FormatterTest.java) | 3 |
4 files changed, 7 insertions, 4 deletions
diff --git a/tests/src/cgeo/geocaching/utils/UncertainPropertyTest.java b/tests/src/cgeo/geocaching/connector/gc/UncertainPropertyTest.java index 74aa680..728f78a 100644 --- a/tests/src/cgeo/geocaching/utils/UncertainPropertyTest.java +++ b/tests/src/cgeo/geocaching/connector/gc/UncertainPropertyTest.java @@ -1,4 +1,6 @@ -package cgeo.geocaching.utils; +package cgeo.geocaching.connector.gc; + +import cgeo.geocaching.connector.gc.UncertainProperty; import junit.framework.TestCase; diff --git a/tests/src/cgeo/geocaching/geopoint/GeoPointFormatterTest.java b/tests/src/cgeo/geocaching/geopoint/GeoPointFormatterTest.java index 4392705..2816664 100644 --- a/tests/src/cgeo/geocaching/geopoint/GeoPointFormatterTest.java +++ b/tests/src/cgeo/geocaching/geopoint/GeoPointFormatterTest.java @@ -2,7 +2,7 @@ package cgeo.geocaching.geopoint; import static org.assertj.core.api.Assertions.assertThat; -import cgeo.geocaching.ui.Formatter; +import cgeo.geocaching.utils.Formatter; import android.test.AndroidTestCase; diff --git a/tests/src/cgeo/geocaching/geopoint/GeoPointParserTest.java b/tests/src/cgeo/geocaching/geopoint/GeoPointParserTest.java index 3e5667b..f8a3bb2 100644 --- a/tests/src/cgeo/geocaching/geopoint/GeoPointParserTest.java +++ b/tests/src/cgeo/geocaching/geopoint/GeoPointParserTest.java @@ -2,7 +2,7 @@ package cgeo.geocaching.geopoint; import static org.assertj.core.api.Assertions.assertThat; -import cgeo.geocaching.ui.Formatter; +import cgeo.geocaching.utils.Formatter; import android.test.AndroidTestCase; diff --git a/tests/src/cgeo/geocaching/ui/FormatterTest.java b/tests/src/cgeo/geocaching/utils/FormatterTest.java index 22008e0..c91445d 100644 --- a/tests/src/cgeo/geocaching/ui/FormatterTest.java +++ b/tests/src/cgeo/geocaching/utils/FormatterTest.java @@ -1,4 +1,4 @@ -package cgeo.geocaching.ui; +package cgeo.geocaching.utils; import static org.assertj.core.api.Assertions.assertThat; @@ -6,6 +6,7 @@ import cgeo.geocaching.CgeoApplication; import cgeo.geocaching.R; import cgeo.geocaching.Waypoint; import cgeo.geocaching.enumerations.WaypointType; +import cgeo.geocaching.utils.Formatter; import android.test.AndroidTestCase; |
