#ifndef PSXC_TEST_H_
|
|
#define PSXC_TEST_H_
|
|
|
|
#include <stddef.h>
|
|
|
|
typedef struct {
|
|
const char *name;
|
|
void (*test)(void);
|
|
} test_case_t;
|
|
|
|
extern const test_case_t TEST_CASES[];
|
|
|
|
extern const size_t NUM_TEST_CASES;
|
|
|
|
#endif
|