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

public class Main {
    public native void runAllTests();

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

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

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