test_bt_common.c 283 B

1234567891011121314
  1. /*
  2. Tests for the BT common things implementation
  3. */
  4. #include <stdbool.h>
  5. #include "unity.h"
  6. extern bool btdm_controller_compile_version_check(void);
  7. TEST_CASE("bt_controller_git_commit_check", "[bt_common]")
  8. {
  9. TEST_ASSERT(btdm_controller_compile_version_check() == true);
  10. }