Main.c 244 B

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