added testing to cnnflowcontroll::ZeigerEval/ZeigerEvalHybrid

This commit is contained in:
Frank Haverland
2022-06-26 23:21:01 +02:00
parent ef24466702
commit 78ea179e9a
2 changed files with 97 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#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();
}