fix test cases running in stackoverlfow

This commit is contained in:
Frank Haverland
2022-10-27 20:14:26 +02:00
parent c4bbd7c545
commit f935c38571
4 changed files with 30 additions and 18 deletions

View File

@@ -104,13 +104,18 @@ extern "C" void app_main()
{
initGPIO();
Init_NVS_SDCard();
esp_log_level_set("*", ESP_LOG_DEBUG); // set all components to ERROR level
UNITY_BEGIN();
RUN_TEST(testNegative);
RUN_TEST(test_analogToDigit_Standard);
RUN_TEST(test_analogToDigit_Transition);
RUN_TEST(test_doFlow);
RUN_TEST(test_doFlowPP);
RUN_TEST(test_doFlowPP1);
RUN_TEST(test_doFlowPP2);
RUN_TEST(test_doFlowPP3);
UNITY_END();
}