scl/test/registry.h

16 lines
231 B
C
Raw Normal View History

#ifndef REGISTRY_H
#define REGISTRY_H
#include <stdio.h>
2024-10-05 09:24:12 -04:00
#include "unity/unity.h"
2024-10-05 09:24:12 -04:00
typedef int (*Test)(void);
// Register a new test function.
2024-10-05 09:24:12 -04:00
void register_test(Test);
// Run all registered tests.
void run_all_tests();
#endif