blob: 2852a4d4699b9b0c9c5c6f9ebcc53091f2c402d4 (
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() {
final Trackable trackable = new Trackable();
trackable.setGeocode("tb1234");
assertEquals("TB1234", trackable.getGeocode());
}
public static void testSetLogsNull() {
final Trackable trackable = new Trackable();
trackable.setLogs(null);
assertNotNull("Trackable logs must not be null!", trackable.getLogs());
}
}
|