#include #include #include "test.h" void setup() { delay(2000); // start unit tests engine UNITY_BEGIN(); Serial.begin(115200); RUN_TEST(TestWifiBeginConnected); RUN_TEST(TestWifiBeginNotConnected); RUN_TEST(TestConnectAPI); // RUN_TEST(TestConnectAPIFailed); UNITY_END(); } void loop() { }