blob: 9883a3286ac4322e37de569ff12b110a1273620a (
plain)
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
|
package cgeo.geocaching;
import static org.assertj.core.api.Assertions.assertThat;
import cgeo.geocaching.location.Geopoint;
import android.test.AndroidTestCase;
public class DestinationTest extends AndroidTestCase {
private Destination dest = null;
@Override
protected void setUp() throws Exception {
super.setUp();
dest = new Destination(1, 10000, new Geopoint(52.5, 9.33));
}
public void testSomething() {
assertThat(dest.getId()).isEqualTo(1);
assertThat(dest.getDate()).isEqualTo(10000);
assertThat(dest.getCoords().getLatitude()).isEqualTo(52.5);
assertThat(dest.getCoords().getLongitude()).isEqualTo(9.33);
}
}
|