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

Go to the source code of this file.

Functions

Suite * etharp_suite (void)
 

Function Documentation

◆ etharp_suite()

Suite * etharp_suite ( void  )

Create the suite including all tests for this module

Definition at line 267 of file test_etharp.c.

268{
269 testfunc tests[] = {
270 TESTFUNC(test_etharp_table)
271 };
272 return create_suite("ETHARP", tests, sizeof(tests)/sizeof(testfunc), etharp_setup, etharp_teardown);
273}
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 etharp_setup(void)
Definition: test_etharp.c:120
static void etharp_teardown(void)
Definition: test_etharp.c:128

Referenced by main().