filenator/pawnutils/testing/main.c
2025-06-24 22:36:42 +03:00

18 lines
301 B
C

#include <stdio.h>
#include <stdlib.h>
extern void test_FileCfg_codec();
struct codec_tests {
char *test_name;
void (*test_fn)();
};
int main() {
const struct codec_tests t = {"pawn_FileCfg_codec", test_FileCfg_codec};
printf("Running %s test", t.test_name);
t.test_fn();
return 0;
}