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