blob: 27fd433e7f5b15c340cd5ffa969c5791e2b634b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
package cgeo.geocaching.test;
import junit.framework.Assert;
import android.test.AndroidTestCase;
import cgeo.geocaching.cgDestination;
public class cgDestinationTest extends AndroidTestCase {
cgDestination dest = null;
@Override
protected void setUp() throws Exception {
super.setUp();
dest = new cgDestination(1, 10000, 52.5, 9.33);
}
public void testSomething() throws Throwable {
Assert.assertEquals(1, dest.getId());
Assert.assertEquals(10000, dest.getDate());
Assert.assertEquals(52.5, dest.getLatitude());
Assert.assertEquals(9.33, dest.getLongitude());
}
}
|