/* unit.c unit tests driver */ #include #include "unit.h" int myoptind = 0; char* myoptarg = NULL; int main(int argc, char** argv) { printf("hello unit tests\n"); if (ApiTest() != 0) printf("api test failed\n"); if (HashTest() != 0) printf("hash test failed\n"); return 0; }