mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-08 12:36:52 +03:00
16 lines
312 B
C++
16 lines
312 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);
|
|
|
|
UNITY_END();
|
|
} |