ReactOS 0.4.15-dev-7953-g1f49173
test_udp.h File Reference
#include "../lwip_check.h"
Include dependency graph for test_udp.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

Suite * udp_suite (void)
 

Function Documentation

◆ udp_suite()

Suite * udp_suite ( void  )

Create the suite including all tests for this module

Definition at line 62 of file test_udp.c.

63{
64 TFun tests[] = {
65 test_udp_new_remove,
66 };
67 return create_suite("UDP", tests, sizeof(tests)/sizeof(TFun), udp_setup, udp_teardown);
68}
static Suite * create_suite(const char *name, TFun *tests, size_t num_tests, SFun setup, SFun teardown)
Definition: lwip_check.h:20
static struct test_info tests[]
static void udp_setup(void)
Definition: test_udp.c:28
static void udp_teardown(void)
Definition: test_udp.c:34

Referenced by main().