1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
package cgeo.geocaching;
import cgeo.geocaching.enumerations.WaypointType;
import android.test.AndroidTestCase;
public class WaypointTest extends AndroidTestCase {
public static void testOrder() {
final Waypoint cache = new Waypoint("Final", WaypointType.FINAL, false);
final Waypoint trailhead = new Waypoint("Trail head", WaypointType.TRAILHEAD, false);
final Waypoint stage = new Waypoint("stage", WaypointType.STAGE, false);
final Waypoint puzzle = new Waypoint("puzzle", WaypointType.PUZZLE, false);
final Waypoint own = new Waypoint("own", WaypointType.OWN, true);
final Waypoint parking = new Waypoint("parking", WaypointType.PARKING, false);
assertOrdered(trailhead, puzzle);
assertOrdered(trailhead, stage);
assertOrdered(trailhead, cache);
assertOrdered(stage, cache);
assertOrdered(puzzle, cache);
assertOrdered(trailhead, own);
assertOrdered(puzzle, own);
assertOrdered(stage, own);
assertOrdered(cache, own);
assertOrdered(parking, puzzle);
assertOrdered(parking, stage);
assertOrdered(parking, cache);
assertOrdered(parking, own);
assertOrdered(parking, trailhead);
}
private static void assertOrdered(Waypoint first, Waypoint second) {
assertTrue(Waypoint.WAYPOINT_COMPARATOR.compare(first, second) < 0);
}
public static void testGeocode() {
final Waypoint waypoint = new Waypoint("Test waypoint", WaypointType.PARKING, false);
waypoint.setGeocode("p1");
assertEquals("P1", waypoint.getGeocode());
}
}
|