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