summaryrefslogtreecommitdiff
path: root/platform/android/src/test/Main.java
blob: e20aa7db3f860713dd40e38a256a672cc53ca8e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
public class Main {
	public native void runAllTests();

	public static void main(String[] args) throws Exception {
		//Need to load the mapbox-gl library explicitly first
		System.loadLibrary("mapbox-gl");
		//Load the tests
		System.loadLibrary("test-jni-lib");
		System.out.println("Libraries loaded");
		//Run the tests
		new Main().runAllTests();
	}
}