Main.cpp 201 B

1234567891011
  1. #include <stdio.h>
  2. #include <string.h>
  3. #include "test/Test.h"
  4. int main(int argc, char** argv) {
  5. if(argc >= 3 && strcmp(argv[1], "test") == 0) {
  6. Test::start(argv[2]);
  7. }
  8. return 0;
  9. }