blob: 91f7f67212a5290cdc0c0f4b61f572b006d5bac1 [file] [log] [blame]
#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;
}