blob: c18d1ea9402c10d3238c39f83d55267614abacfe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package cgeo.geocaching;
import android.test.AndroidTestCase;
public class TrackableTest extends AndroidTestCase {
public static void testGetGeocode() {
Trackable trackable = new Trackable();
trackable.setGeocode("tb1234");
assertEquals("TB1234", trackable.getGeocode());
}
public static void testSetLogsNull() {
Trackable trackable = new Trackable();
trackable.setLogs(null);
assertNotNull("Trackable logs must not be null!", trackable.getLogs());
}
}
|