1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
#include "Config.h"
#include <stdio.h>
#include <assert.h>
#include <string.h>
#include <stdlib.h>
#include <stdarg.h>
#include <unistd.h>
#include "Bootstrap.h"
#include "Str.h"
#include "system/Time.h"
#include "Thread.h"
#include "system/Net.h"
#include "File.h"
/**
* Net.c unity tests.
*/
int main(int argc, char **argv) {
Bootstrap(); // Need to initialize library
printf("============> Start Net Tests\n\n");
printf("============> Net Tests: OK\n\n");
return 0;
}
|