2018-06-26 02:56:58 -04:00
|
|
|
/*
|
|
|
|
Tests for the Wi-Fi
|
|
|
|
*/
|
|
|
|
#include "unity.h"
|
|
|
|
#include "esp_log.h"
|
2019-03-22 02:21:15 -04:00
|
|
|
#include "esp_private/wifi.h"
|
2018-06-26 02:56:58 -04:00
|
|
|
|
|
|
|
TEST_CASE("wifi lib git commit id","[wifi]")
|
|
|
|
{
|
|
|
|
TEST_ESP_OK( esp_wifi_internal_git_commit_id_check() );
|
|
|
|
}
|
|
|
|
|