summaryrefslogtreecommitdiff
path: root/android/MapboxGLAndroidSDKTestApp/src/test/java/LatLngZoomTest.java
blob: 5aa42459fbcfb587ce3cc325de5da31072df52e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import com.mapbox.mapboxsdk.geometry.LatLngZoom;

import org.junit.Test;

import static org.junit.Assert.assertNotNull;

public class LatLngZoomTest {

    @Test
    public void testSanity() {
        LatLngZoom latLngZoom = new LatLngZoom(0.0, 0.0, 0.0);
        assertNotNull("latLngZoom should not be null", latLngZoom);
    }

}