1#include <stdio.h>
2
3
4#include "testenv.h"
5
6int main (int argc, char * const *argv) {
7
8    printf("WARNING: If running those tests on a device with a passcode, DONT FORGET TO UNLOCK!!!\n");
9    tests_begin(argc, argv);
10    return 0;
11}
12