Microchip® Advanced Software Framework

test_suite Struct Reference

A test suite.

A test suite may contain one or more test cases which are to be run in sequence.

#include <suite.h>

Data Fields

const char * name
 The name of the test suite. More...
 
unsigned int nr_tests
 The number of tests in this suite. More...
 
struct test_case *const * tests
 Array of pointers to the test cases. More...
 

const char* test_suite::name

The name of the test suite.

Referenced by test_suite_run().

unsigned int test_suite::nr_tests

The number of tests in this suite.

Referenced by test_suite_run().

struct test_case* const* test_suite::tests

Array of pointers to the test cases.

Referenced by test_suite_run().