test_suite_flowcontroll.cpp 312 B

12345678910111213141516
  1. #include <unity.h>
  2. #include "components/jomjol-flowcontroll/test_cnnflowcontroll.cpp"
  3. /**
  4. * @brief startup the test. Like a test-suite
  5. * all test methods must be called here
  6. */
  7. extern "C" void app_main()
  8. {
  9. UNITY_BEGIN();
  10. RUN_TEST(test_ZeigerEval);
  11. RUN_TEST(test_ZeigerEvalHybrid);
  12. UNITY_END();
  13. }