getch_c/tests/test.c

13 lines
218 B
C
Raw Permalink Normal View History

2021-02-24 20:46:16 -08:00
#define CTEST_MAIN
#include "ctest.h"
int main(int argc, const char *argv[])
{
if(argc == 1) {
argv[1] = "getchTests";
argc = 2;
}
int result = ctest_main(argc, argv);
return result;
}