Files
T2-start-2025/C/t-oer-prc2-cbdb-main/Assignments/ExtraAssignments/Skater/test/main.c
Rens Pastoor 11b391b8a1 sync
2025-05-27 22:41:46 +02:00

17 lines
464 B
C

#include "unity_test_module.h"
/* As an alternative for header files we can declare that
* the following methos are available 'extern'ally.
*/
extern void run_skater_tests();
int main (int argc, char * argv[])
{
UnityTestModule allModules[] = { { "skater", run_skater_tests}
};
size_t number_of_modules = sizeof(allModules)/sizeof(allModules[0]);
return UnityTestModuleRun(argc, argv, allModules, number_of_modules);
}