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

Go to the source code of this file.

Functions

Suite * def_suite (void)
 

Function Documentation

◆ def_suite()

Suite * def_suite ( void  )

Create the suite including all tests for this module

Definition at line 78 of file test_def.c.

79{
80 testfunc tests[] = {
81 TESTFUNC(test_def_lwip_itoa)
82 };
83 return create_suite("DEF", tests, sizeof(tests)/sizeof(testfunc), def_setup, def_teardown);
84}
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 def_teardown(void)
Definition: test_def.c:17
static void def_setup(void)
Definition: test_def.c:12

Referenced by main().