Files
Rens Pastoor 517087ccc1 C ordening
2025-05-27 23:26:28 +02:00

20 lines
606 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_administration_tests();
extern void run_file_element_tests();
int main (int argc, char * argv[])
{
UnityTestModule allModules[] = { { "administration", run_administration_tests} ,
{ "file_element", run_file_element_tests}
};
size_t number_of_modules = sizeof(allModules)/sizeof(allModules[0]);
return UnityTestModuleRun(argc, argv, allModules, number_of_modules);
}