Add test utils

This commit is contained in:
2023-11-02 00:11:44 +00:00
parent 31d78bfcd3
commit 7beac7e475
2 changed files with 12 additions and 7 deletions

11
include/test_utils.h Normal file
View File

@@ -0,0 +1,11 @@
#ifndef TEST_UTILS_H
#define TEST_UTILS_H
#define ARRLEN(ARR) (sizeof ARR / sizeof ARR[0])
typedef struct {
const char *name;
const char *contents;
} asset_t;
#endif // !TEST_UTILS_H