ReactOS 0.4.16-dev-258-g81860b4
test_dns.h File Reference
#include "../lwip_check.h"
Include dependency graph for test_dns.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

Suite * dns_suite (void)
 

Function Documentation

◆ dns_suite()

Suite * dns_suite ( void  )

Create the suite including all tests for this module

Definition at line 46 of file test_dns.c.

47{
48 testfunc tests[] = {
49 TESTFUNC(test_dns_set_get_server)
50 };
51 return create_suite("DNS", tests, sizeof(tests)/sizeof(testfunc), dns_setup, dns_teardown);
52}
Suite * create_suite(const char *name, testfunc *tests, size_t num_tests, SFun setup, SFun teardown)
#define TESTFUNC(x)
Definition: lwip_check.h:22
static struct test_info tests[]
static void dns_setup(void)
Definition: test_dns.c:8
static void dns_teardown(void)
Definition: test_dns.c:13

Referenced by main().