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

21 lines
577 B
C

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