summaryrefslogtreecommitdiff
path: root/platform/android/src/test/Main.java
blob: b6f540f666bb0e1bbe3526b8bb1d508622835dff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

public class Main {
    public native void runAllTests(String[] args);

    public static void main(String[] args) throws Exception {
        //Load the tests
        System.loadLibrary("mbgl-test");

        //Run the tests
        new Main().runAllTests(args);

        //Exit explicitly otherwise dalvikvm won't quit
        System.exit(0);
    }
}