mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-31 09:32:57 +00:00
21 lines
322 B
C
21 lines
322 B
C
|
#include "CppUTest/TestHarness.h"
|
||
|
#include "CppUTest/CommandLineTestRunner.h"
|
||
|
|
||
|
#include "hci_cmd.h"
|
||
|
|
||
|
TEST_GROUP(HCI_Command){
|
||
|
void setup(void){
|
||
|
}
|
||
|
void teardown(void){
|
||
|
}
|
||
|
};
|
||
|
|
||
|
|
||
|
TEST(HCI_Command, test){
|
||
|
|
||
|
}
|
||
|
|
||
|
int main (int argc, const char * argv[]){
|
||
|
return CommandLineTestRunner::RunAllTests(argc, argv);
|
||
|
}
|