test_bt_common.c 411 B

1234567891011121314151617181920
  1. /*
  2. * SPDX-FileCopyrightText: 2021 Espressif Systems (Shanghai) CO LTD
  3. *
  4. * SPDX-License-Identifier: Unlicense OR CC0-1.0
  5. */
  6. /*
  7. Tests for the BT common things implementation
  8. */
  9. #include <stdbool.h>
  10. #include "unity.h"
  11. extern bool btdm_controller_compile_version_check(void);
  12. TEST_CASE("bt_controller_git_commit_check", "[bt_common]")
  13. {
  14. TEST_ASSERT(btdm_controller_compile_version_check() == true);
  15. }