You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
280 B
C
17 lines
280 B
C
13 years ago
|
/* unit.c unit tests driver */
|
||
|
#include <stdio.h>
|
||
|
#include "unit.h"
|
||
|
|
||
|
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;
|
||
|
}
|