#include <stdio.h> #include <string.h> #include "test/Test.h" int main(int argc, char** argv) { if(argc <= 0) { return 0; } if(argc >= 3 && strcmp(argv[1], "test") == 0) { startTests(argv[2]); } return 0; }