14 lines
216 B
C
14 lines
216 B
C
/* 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");
|
|
|
|
return 0;
|
|
}
|