Files
AI-on-the-edge-device/code/test/test_suite_flowcontroll.cpp
2022-07-20 18:35:42 +02:00

17 lines
348 B
C++

#include <unity.h>
#include "components/jomjol-flowcontroll/test_cnnflowcontroll.cpp"
/**
* @brief startup the test. Like a test-suite
* all test methods must be called here
*/
extern "C" void app_main()
{
UNITY_BEGIN();
RUN_TEST(test_ZeigerEval);
RUN_TEST(test_ZeigerEvalHybrid);
RUN_TEST(test_ZeigerEvalDigital);
UNITY_END();
}