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

Go to the source code of this file.

Functions

Suite * netif_suite (void)
 

Function Documentation

◆ netif_suite()

Suite * netif_suite ( void  )

Create the suite including all tests for this module

Definition at line 277 of file test_netif.c.

278{
279 testfunc tests[] = {
280 TESTFUNC(test_netif_extcallbacks),
281 TESTFUNC(test_netif_flag_set),
282 TESTFUNC(test_netif_find)
283 };
284 return create_suite("NETIF", tests, sizeof(tests)/sizeof(testfunc), netif_setup, netif_teardown);
285}
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 netif_setup(void)
Definition: test_netif.c:18
static void netif_teardown(void)
Definition: test_netif.c:24

Referenced by main().