summaryrefslogtreecommitdiff
path: root/platform/android/src/test/Main.java
blob: b0f3aeb7b9fbf28458a48c5cfc916e5240fa8699 (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);
    }
}