All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.osmdroid.test.MapActivityTest Maven / Gradle / Ivy

There is a newer version: 5.2
Show newest version
package org.osmdroid.test;

import org.osmdroid.MapActivity;

import android.test.ActivityInstrumentationTestCase2;

public class MapActivityTest extends ActivityInstrumentationTestCase2 {

    public MapActivityTest() {
        super("org.osmdroid", MapActivity.class);
    }

    public void testActivity() {
        MapActivity activity = getActivity();
        assertNotNull(activity);
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy