test_wifi_lib_git_commit.c 270 B

1234567891011121314
  1. /*
  2. Tests for the Wi-Fi
  3. */
  4. #include "unity.h"
  5. #include "esp_log.h"
  6. #include "esp_wifi_internal.h"
  7. static const char* TAG = "test_wifi_lib_git_commit_id";
  8. TEST_CASE("wifi lib git commit id","[wifi]")
  9. {
  10. TEST_ESP_OK( esp_wifi_internal_git_commit_id_check() );
  11. }